将 .eps 转换为 .jpg
我们的打印团队将光栅图像保存为 .eps 文件。我们需要将大约 11000 .eps 转换为 .jpg。我们在 Linux 上使用 ImageMagick(带有 Ghostprint)。转换发生,但生成的 .jpg 与源 .eps 的大小不同 - 大小约为 1/2。可能是矢量转换为栅格时出现问题。有办法解决这个问题吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用默认分辨率 (72dpi)。使用
-密度
选项指定要转换
的dpi。转换-密度300 /path/to/file.eps -展平/path/to/file/.jpg;
Your using the default resolution (72dpi). use the
-density
option to specify a dpi toconvert
.convert -density 300 /path/to/file.eps -flatten /path/to/file/.jpg;