EPS > JPG stitch, resize, convert is turning background gray

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
aspiringmagician
Posts: 2
Joined: 2011-03-21T09:40:10-07:00
Authentication code: 8675308

EPS > JPG stitch, resize, convert is turning background gray

Post by aspiringmagician »

I'm using this command to stitch two .eps files together, resize the composite to 3600 pixels wide (maintaining the aspect ratio), and convert from CMYK to RGB.

Code: Select all

convert -density 400 leftHalf.eps rightHalf.eps +append -adaptive-resize 3600 -profile USWebCoatedSWOP.icc -profile sRGB_v4_ICC_preference.icc -verbose -quality 100 leftHalf-rightHalf.jpg
Only ONE issue remains. rightHalf.eps is a completely blank white page. But the right side of the leftHalf-rightHalf.jpg composite is gray.

I tried the following; it didn't help.

Code: Select all

convert -density 400 leftHalf.eps rightHalf.eps +append -adaptive-resize 3600 -profile USWebCoatedSWOP.icc -profile sRGB_v4_ICC_preference.icc -background white -flatten -verbose -quality 100 leftHalf-rightHalf.jpg
I'd really appreciate it if anyone could tell me what I'm doing wrong. Thanks in advance.

UPDATE: Tagged the convert commands with code flags
Last edited by aspiringmagician on 2011-03-21T10:23:10-07:00, edited 1 time in total.
aspiringmagician
Posts: 2
Joined: 2011-03-21T09:40:10-07:00
Authentication code: 8675308

Re: EPS > JPG stitch, resize, convert is turning background

Post by aspiringmagician »

Adding environment information:
ImageMagick 6.6.7-5 2011-02-06 Q16 http://www.imagemagick.org
GPL Ghostscript 8.71 (2010-02-10)
Mac OSX 10.6.6
Post Reply