开发者

Converting .eps to .jpg

开发者 https://www.devze.com 2022-12-23 17:58 出处:网络
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

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 sam开发者_StackOverflow中文版e 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?


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;

0

精彩评论

暂无评论...
验证码 换一张
取 消