views:

1217

answers:

1

I am generate thumbnail and medium sized images from large photos. These smaller photos are for display in an online gallery. Many of the photographers are submitting JPEG images using Adobe RGB. I have been asked if the thumbnail and medium size images can use sRGB as the images as is appear "flat" in some browsers.

I'm currently using ImageMagick to create the smaller versions. It has a -colorspace option, but that doesn't seem to do what I want.

Is there any other way to do this? Also, do you think this is worthwhile?

+3  A: 

You can use the ImageMagic -profile option:

convert image.jpg -profile sRGB.icc rgb_image.jpg

See here for more details: http://www.imagemagick.org/Usage/formats/#color_profile.

HaBaLeS