I'm trying to convert some PNGs with a colorspace of SRGB to JPEGs with a colorspace of RGB but I'm having some problems. When comparing the results to the original files in OS X's Preview and Windows 7's Photo Viewer application, the results are very dark and to my eye almost monochrome.
Imagemagick is being called from an external process via it's command line interface. Here is the call. See this link for an image that can duplicate these results and this link for this command's output.
Code: Select all
C:\Users\Administrator\Documents\static_imagemagick\convert -verbose -colorspace RGB -resize 512x512 test pngs\Corecycle41Burndown 2.png -flatten \
-testOutput\test.jpg
FYI this is on a windows 7 x64 box running the statically linked prebuilt IM available from the IM download page. Here's the output of convert -version:
thanks,Version: ImageMagick 6.8.0-10 2012-12-12 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2013 ImageMagick Studio LLC
Features: OpenMP
Mike