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?".
magick
Site Admin
Posts: 11064 Joined: 2003-05-31T11:32:55-07:00
Post
by magick » 2006-05-03T16:39:32-07:00
The latest version of ImageMagick, 6.2.7-2, permits you to produce RGB images from CMYK with the
-colorspace RGB option:
convert -colorspace rgb cmyk-image.eps image.gif With older versions of ImageMagick you need a CMYK and RGB color profile to get a proper conversion from the CMYK colorspace to sRGB.
magick
Site Admin
Posts: 11064 Joined: 2003-05-31T11:32:55-07:00
Post
by magick » 2006-05-04T09:19:48-07:00
Post a URL to your original EPS image so we can reproduce the problem and investigate.
magick
Site Admin
Posts: 11064 Joined: 2003-05-31T11:32:55-07:00
Post
by magick » 2006-05-04T10:02:41-07:00
This command produces the expected image:
convert -density 300 701256.eps -profile USWebCoatedSWOP.icc -profile sRGB.icm 701256.gif Note, the LCMS delegate library is required to apply color profiles to an image.
magick
Site Admin
Posts: 11064 Joined: 2003-05-31T11:32:55-07:00
Post
by magick » 2006-05-04T11:13:15-07:00
Check the config.log file very carefully for sections on LCMS. It will tell you why ImageMagick failed to validate the LCMS delegate library.