Page 1 of 1

32bits jpg to 24bits jpg

Posted: 2015-04-24T07:52:40-07:00
by mmotta19
I'm trying to convert a 32bits Jpg image to 24bits jpg image, so I put this command:
convert Image.jpg -colorspace rgb image_rgb.jpg

It works, but the image looks diferent:

32 Bits
https://drive.google.com/file/d/0BzDALy ... sp=sharing

Converted 24 Bits
https://drive.google.com/file/d/0BzDALy ... sp=sharing

Is there other way??

Thanks

Re: 32bits jpg to 24bits jpg

Posted: 2015-04-24T08:01:22-07:00
by snibgo
The input is CMYK. You probably want to create an sRGB (not RGB) output.

In addition, the input has an embedded CMYK profile. A more accurate conversion would be:

Code: Select all

convert 32.jpg -profile sRGB.icc 24.jpg
... assuming sRGB.icc is in your current directory.

Re: 32bits jpg to 24bits jpg

Posted: 2015-04-24T10:37:08-07:00
by mmotta19
OK.
It works very fine..

Thank you very much!!