Error “Invalid Parameter” fom ImageMagick convert on Windows

后端 未结 6 2113
我在风中等你
我在风中等你 2020-12-30 23:39

I am trying to convert a PDF document into a PNG file using ImageMagick command line tools from a ASP.NET website. I create a new shell process and ahve it execute the follo

6条回答
  •  别那么骄傲
    2020-12-31 00:08

    As others have stated convert points to a different program in your PATH. Instead preface your command with magick. So your command would instead be:

    magick convert -density 96x96 "[FileNameAndPath].pdf" "[FileNameAndPath].png"
    

提交回复
热议问题