EPS 到 JPG 的转换命令
我想知道如何使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我无法在 cygwin 上测试它,但以下内容在 unix 下工作:
也许你必须在 windows 下使用反斜杠作为文件路径
并尝试使用绝对路径,例如 c:\path\ ...
请记住,Windows 下还有另一个转换命令,可以在文件系统之间进行转换。也许调用的是错误的。
I cannot test it for cygwin but the following is working under unix:
Maybe you have to use backslashes for the file path under windows
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.