I try to use this blog post to convert one PDF to jpg, however every time I try to run this simple script I get this exception wand.exceptions.WandError: wand contains no images MagickWand-56' @ error/magick-image.c/MagickWriteImage/13001
from wand.image import Image with Image(filename="myFile.pdf") as img: img.save(filename="myFile.png")
I am using the latest version of Wand and Python 3.4.2. The only thing I can think of is probably a version compatibility issue.
source share