Converting from AdobeRGB to sRGB using mogrify
Posted: 2010-06-21T04:34:31-07:00
I'm trying to convert in place from AdobeRGB JPGs with Mogrify using the following command line:
mogrify 1_aRGB.jpg -profile sRGB.icc
This updates the file but does not seem to do the conversion, looking with Inspect it still lists:
Profiles:
Profile-8bim: 8158 bytes
Profile-exif: 6751 bytes
Profile-icc: 560 bytes
Description: Adobe RGB (1998)
Manufacturer: Adobe RGB (1998)
Model: Adobe RGB (1998)
Copyright: Copyright 1999 Adobe Systems Incorporated
And visually when checked in a non-colour managed browser (IE8) it's still very obviously in AdobeRGB.
However I can get an image in sRGB by using Convert:
convert 1_aRGB.jpg -profile sRGB.icc sRGB_image.jpg
So am I using Mogrify correctly here, or is there a bug?
I am using: http://www.imagemagick.org/download/bin ... ws-dll.exe
Thanks!
mogrify 1_aRGB.jpg -profile sRGB.icc
This updates the file but does not seem to do the conversion, looking with Inspect it still lists:
Profiles:
Profile-8bim: 8158 bytes
Profile-exif: 6751 bytes
Profile-icc: 560 bytes
Description: Adobe RGB (1998)
Manufacturer: Adobe RGB (1998)
Model: Adobe RGB (1998)
Copyright: Copyright 1999 Adobe Systems Incorporated
And visually when checked in a non-colour managed browser (IE8) it's still very obviously in AdobeRGB.
However I can get an image in sRGB by using Convert:
convert 1_aRGB.jpg -profile sRGB.icc sRGB_image.jpg
So am I using Mogrify correctly here, or is there a bug?
I am using: http://www.imagemagick.org/download/bin ... ws-dll.exe
Thanks!