EPS > JPG stitch, resize, convert is turning background gray
Posted: 2011-03-21T10:01:53-07:00
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.
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.
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
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
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
UPDATE: Tagged the convert commands with code flags