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
32bits jpg to 24bits jpg
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: 32bits jpg to 24bits jpg
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:
... assuming sRGB.icc is in your current directory.
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
snibgo's IM pages: im.snibgo.com
Re: 32bits jpg to 24bits jpg
OK.
It works very fine..
Thank you very much!!
It works very fine..
Thank you very much!!