Post by Ernst DinklaIs there an easy way to do that?
It depends on what you are looking for.
Are you looking for the minimum L value in one of the B2A tables
(ie. the value the profile creator chose), or are you looking
for the minimum L value the device is capable of creating ?
To determine the latter for a CMYK device you need to know
the device gamut limits (ie. ink limit etc.).
Neither are definitively accessible using any of the current tools,
since this implies searching the tables. You can do a search by
hand using xicclu, or rely on the gamut clipping to give you
a close to target value.
For instance, something close to the minimum L of the colorimetric
B2A table would be:
xicclu -fb -ir -pl profile
0.000000 0.000000 0.000000 [Lab] -> Lut -> 0.127802 0.000000 0.693490 1.000000 [CMYK]
then lookup the CMYK values
xicclu -ff -ir -pl profile
0.127802 0.000000 0.693490 1.000000 [CMYK] -> Lut -> 13.222016 0.607799 -0.301865 [Lab]
which is likely to be close to what you are after, but it's always possible that some
other CMYK value might produce a lower L* value.
Exploring what the device is capable of would be similar:
xicclu -fif -ir -pl -l 300.0 profile
etc.
Graeme Gill