Problem creating animated gif

2006-10-17 Thread abcd
I am using gifmaker.py from PIL v1.1.5 on python 2.4.1. CODE import ImageGrab, gifmaker seq = [] while keepOnGoing: im = ImageGrab.grab() seq.append(im) fp = open("out.gif", "wb") gifmaker.makedelta(fp, seq) fp.close() --

Re: Problem creating animated gif

2006-10-17 Thread Fredrik Lundh
"abcd" <[EMAIL PROTECTED]> wrote: > Any ideas? Basically I want to make an animated GIF out of a bunch of > images taken using the ImageGrab module. the screen is an RGB device, but the gifmaker wants palette images (mode P). to fix this, insert im = im.convert("P") after the grab (or befo