EPS 到 JPG 的转换命令

发布于 2024-12-29 07:12:02 字数 267 浏览 0 评论 0原文

我想知道如何使用convert命令将EPS img转换为JPG

我没有 Linux M/c,但我正在使用 Cygwin。我已经搜索过,但没有任何效果。我总是收到无效参数错误。

$ convert "/cygdrive/e/pdf/B313.eps" "/cygdrive/e/macro/B313.JPG"
Invalid Parameter - /e

如果能解决这个问题就太好了。

I want to know how to use convert command to convert EPS img to JPG.

I dont have Linux M/c but I am using Cygwin. I have searched, but nothing is working. I always get invalid argument error.

$ convert "/cygdrive/e/pdf/B313.eps" "/cygdrive/e/macro/B313.JPG"
Invalid Parameter - /e

It will be great if could solve this problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

单身情人 2025-01-05 07:12:02

我无法在 cygwin 上测试它,但以下内容在 unix 下工作:

convert -density 50 -antialias -colors 128 -background white -normalize -units PixelsPerInch -quality 100 /path/to/eps/test.eps test.jpg

也许你必须在 windows 下使用反斜杠作为文件路径

$ convert "\cygdrive\e\pdf\B313.eps" "\cygdrive\e\macro\B313.JPG"

并尝试使用绝对路径,例如 c:\path\ ...
请记住,Windows 下还有另一个转换命令,可以在文件系统之间进行转换。也许调用的是错误的。

I cannot test it for cygwin but the following is working under unix:

convert -density 50 -antialias -colors 128 -background white -normalize -units PixelsPerInch -quality 100 /path/to/eps/test.eps test.jpg

Maybe you have to use backslashes for the file path under windows

$ convert "\cygdrive\e\pdf\B313.eps" "\cygdrive\e\macro\B313.JPG"

And try it with absolute paths like c:\path\ ...
Keep in mind that there's another convert command under windows which converts between file systems. Maybe the wrong one is being invoked.

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