Using ImageMagick on Windows

Hi All,

I am trying to use ImageMagick’s convert (from pdf to png) - working fine on macOS and Ubuntu but failing on Windows 10. Converting other formats is fine - it seems to be an issue with pdf files only that I think relates to gs and permission to write into C:\Users\…\AppData\Local\Temp\magick-*

I can reproduce the error with the following code:

using ImageMagick
magickinfo(raw”C:\path\to\file.png”) # works ok

magickinfo(raw”C:\path\to\file.pdf”) # fails

I had hoped that the Julia wrapper over ImageMagick would take care of such things… if anyone could help I’d appreciate it.

Cheers,
Will