Cygwin:转换:无法识别的选项“-d”
Cygwin: convert: unrecognized option `-d'
我使用 cygwin 将 pdf 文件转换为 png。好像是少了安装包或者哪里有问题
D:\>convert -d 300 foo.pdf bar.png
convert: unrecognized option `-d' @ error/convert.c/ConvertImageCommand/1382.
我四处挖掘,发现 this Stack Overflow post, which was a bit similar to yours. It, in turn, linked to this blog post,它描述了在命令行上使用 convert
是这样的:
convert -density 300 -depth 4 lang.font-name.exp0.pdf lang.font-name.exp0.tif
换句话说,-d
可能不是一个有效的选项,部分原因是有多个以字母 d
开头的选项。尝试使用以下内容:
convert -density 300 foo.pdf bar.png
您可能还必须指定一个 depth
参数。
我使用 cygwin 将 pdf 文件转换为 png。好像是少了安装包或者哪里有问题
D:\>convert -d 300 foo.pdf bar.png
convert: unrecognized option `-d' @ error/convert.c/ConvertImageCommand/1382.
我四处挖掘,发现 this Stack Overflow post, which was a bit similar to yours. It, in turn, linked to this blog post,它描述了在命令行上使用 convert
是这样的:
convert -density 300 -depth 4 lang.font-name.exp0.pdf lang.font-name.exp0.tif
换句话说,-d
可能不是一个有效的选项,部分原因是有多个以字母 d
开头的选项。尝试使用以下内容:
convert -density 300 foo.pdf bar.png
您可能还必须指定一个 depth
参数。