Using Python, I'm generating several dozen svg images and attempting to append them as frames in a gif, using a for loop to sequence.append each image in my directory. The code is generating the images themselves with no problems, but once it gets to the appending, it spits out this error.
Code: Select all
wand.exceptions.BlobError: unable to open image `/tmp/magick-xxxxxxxxxxxxxxxx': No such file or directory @ error/blob.c/OpenBlob/2712
Exception TypeError: TypeError("object of type 'NoneType' has no len()",) in <bound method Image.__del__ of <wand.image.Image: (empty)>> ignored
Many thanks in advance for any advice!