ojii / pymaging

Pure Python imaging library with Python 2.6, 2.7, 3.1+ support

Home Page:http://pymaging.rtfd.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gif read/write support

ojii opened this issue · comments

gif read/write support

pretty much got this except for the variable length LZW decompression/compression. Any takers? See http://www.martinreddy.net/gfx/2d/GIF-comp.txt for explanation

Not sure about the LZW stuff, but if the problem still remains, maybe you could use the builtin Tkinter PhotoImage. You might know already that it has support for reading gif files, but I recently became aware of that it can also easily write gif files (and even draw pixels on there). See: http://tkinter.unpythonic.net/wiki/PhotoImage

I have an example script of how to do it if you are interested.