views:

110

answers:

1

Our print team saves raster images as .eps files. We need to convert about 11000 .eps to .jpg. We are using ImageMagick (with Ghostprint) on Linux. The conversion occurs but the resulting .jpg is not the same size as the source .eps - It's about 1/2 the size. Probably a problem converting a vector to a raster. Any way to solve this?

+2  A: 

Your using the default resolution (72dpi). use the -density option to specify a dpi to convert.

convert -density 300 /path/to/file.eps -flatten /path/to/file/.jpg;

prodigitalson
Yep, that did it. Thanks
Slinky