PSD to JPEG conversion

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
sabina

PSD to JPEG conversion

Post by sabina »

Hi Folks,

I need to convert PSD file to JPEG.
I am actually doing it using 'convert' command (i.e. convert img.psd[0] img.jpeg),
but the output image seems to be different from a 'standard' jpeg image and my java application cannot read it.
Can you help me?
Thanks

Regards
sabina
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: PSD to JPEG conversion

Post by magick »

Most likely your image is in the CMYK colorspace which JPEG groks but most web browsers do not. You could add -colorspace sRGB to your command line but better yet, use profiles with the -profile option.
Post Reply