Cygwin:转换:无法识别的选项`-d'

时间:2016-01-25 03:52:21

标签: cygwin pdf-conversion

我使用cygwin将pdf文件转换为png。似乎某些安装包丢失或某处出现问题

func(int * & data) {data++;}

int main(){

int a = 5;
int *p = &a;
func(&a); //this gives a compile error
funk(p);  //this works fine 
}
  

convert:无法识别的选项`-d'@ error / convert.c / ConvertImageCommand / 1382。

1 个答案:

答案 0 :(得分:1)

我去挖掘,我发现了this Stack Overflow post,这与你的有点类似。反过来,它链接到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参数。