Converting TIFF to Grayscale results in sRGB colorspace
Posted: 2013-01-08T04:54:13-07:00
Hey there,
I am trying to convert a TIFF image to "colorspace Gray" with the following command:
After analysing the colorspace afterwards with:
Identify tells me, that the resulting TIFF is in sRGB colorspace. It seems that ImageMagick can not save TIFF files in Gray colorspace. I need this uncompressed 8-bit TIFF because it will be embedded into a CMYK PDF preserving the paths defined in the TIFF.
I use ImageMagick 6.7.6-10.
Is there any way to produce TIFF files in Gray colorspace?
I am trying to convert a TIFF image to "colorspace Gray" with the following command:
Code: Select all
$ convert -compress none -depth 8 -colorspace Gray input.tif +profile icc,icm output.tif
Code: Select all
$ identify -format "%[colorspace]" output.tif
I use ImageMagick 6.7.6-10.
Is there any way to produce TIFF files in Gray colorspace?