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
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:
convert
magick
magick convert -density 96x96 "[FileNameAndPath].pdf" "[FileNameAndPath].png"