Search found 2 matches

by Saineolaí
2018-03-18T12:09:15-07:00
Forum: Bugs
Topic: Wand Can't Open Temporary File When Creating GIF [Python]
Replies: 3
Views: 8480

Re: Wand Can't Open Temporary File When Creating GIF [Python]

IM version - 8:6.8.9.9-7ubuntu5.9 Just to be safe, I ran df -h /tmp like you suggested, and there's still gigs of space! Here's my code: images = glob.glob(os.path.join(source_dir, '*.svg')) with Image(filename=images[0]) as img: for the_file in images[1:]: with Image(filename=the_file) as frame: im...
by Saineolaí
2018-03-18T08:13:00-07:00
Forum: Bugs
Topic: Wand Can't Open Temporary File When Creating GIF [Python]
Replies: 3
Views: 8480

Wand Can't Open Temporary File When Creating GIF [Python]

Hello all. I'm an ImageMagick newbie, and I've been trying to solve this issue for the past couple of days with no joy. 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 ...