I'm using ImageMagick 6.7.2-0 and using the command line I get the same result for both these commands (converting an RGB jpg to CMYK):
Code: Select all
$ convert image.jpg -quality 75 -profile sRGB.icc -profile UncoatedFOGRA29.icc -intent Relative image-out.png
$ convert image.jpg -quality 75 -profile sRGB.icc -profile UncoatedFOGRA29.icc -intent Relative -black-point-compensation image-out.png
So, it looks like convert is ignoring the "-black-point-compensation" flag and always enabling it?
Thanks