将 .eps 转换为 .jpg

发布于 2024-08-26 15:49:14 字数 167 浏览 6 评论 0原文

我们的打印团队将光栅图像保存为 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

︶葆Ⅱㄣ 2024-09-02 15:49:14

您使用默认分辨率 (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 to convert.

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文