I'm running 64-bit Windows. I have Ghostscript (v. 9.09 installed). And this is a small windows app. IIS is not involved at the moment. I'm running the same code that converts all of my other image types. When trying to create the MagickImage object, I get the following error:
"Magick: Postscript delegate failed....No such file or directory @ error/pdf.c/ReadPDFImage/682".
So the error occurs when I run the following line, before the conversion even starts.
using (MagickImage image = new MagickImage("testfile.ai"))
{
}
Thoughts? I'm sure it's something small that I am missing. Do I need to include a reference to ghostscript n my app or something like that.
"Magick: Postscript delegate failed....No such file or directory @ error/pdf.c/ReadPDFImage/682".
So the error occurs when I run the following line, before the conversion even starts.
using (MagickImage image = new MagickImage("testfile.ai"))
{
}
Thoughts? I'm sure it's something small that I am missing. Do I need to include a reference to ghostscript n my app or something like that.