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
PSD to JPEG conversion
Re: PSD to JPEG conversion
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.