Re: gif creator

2008-10-07 Thread Peter Pearson
On Mon, 6 Oct 2008 08:18:14 -0700 (PDT), [EMAIL PROTECTED] wrote: > has anyone written a gif creator program purely in python that doesn't > require PIL or tons of other claptrap? If you would be interested in an old and simpleminded Python program for manipulating PNM files, contact

Re: gif creator

2008-10-06 Thread Lawrence D'Oliveiro
In message <[EMAIL PROTECTED]>, [EMAIL PROTECTED] wrote: > has anyone written a gif creator program purely in python that doesn't > require PIL or tons of other claptrap? It's so much easier to just go into Synaptic (or whatever your package manager is) and check a few bo

Re: gif creator

2008-10-06 Thread Miki
> i didn't want to have to upgrade to a newer release of python, install > a huge bunch of stuff or compile > anything.  and i don't care about other formats or animation or > whatever.  black and white is ok. One option is to install ImageMagick and use subprocess.Popen to communicate with it. Thi

Re: gif creator

2008-10-06 Thread Steve Holden
[EMAIL PROTECTED] wrote: > has anyone written a gif creator program purely in python that doesn't > require PIL or tons of other claptrap? > > the GIF89a format is pretty straightforward and C is not required to > create these files. > > i didn't want to have t

gif creator

2008-10-06 Thread [EMAIL PROTECTED]
has anyone written a gif creator program purely in python that doesn't require PIL or tons of other claptrap? the GIF89a format is pretty straightforward and C is not required to create these files. i didn't want to have to upgrade to a newer release of python, install a huge bunch o