Re: [Image-SIG] Installation program does NOT provide file pilimages.py

2009-10-21 Thread Fredrik Lundh
On Wed, Oct 21, 2009 at 6:54 PM, Waldemar Osuch wrote: > On Tue, Oct 20, 2009 at 5:56 PM, Randy Lent wrote: >> >> I am currently taking a class in Python.  For the class, we are using >> version 2.6.  I have attempted to install the Python Imaging Library on two >> different computers using th

Re: [Image-SIG] Installation program does NOT provide file pilimages.py

2009-10-21 Thread Waldemar Osuch
On Tue, Oct 20, 2009 at 5:56 PM, Randy Lent wrote: > I am currently taking a class in Python. For the class, we are using > version 2.6. I have attempted to install the Python Imaging Library on two > different computers using this link > > http://effbot.org/downloads/PIL-1.1.6.win32-py2.6.exe

[Image-SIG] Installation program does NOT provide file pilimages.py

2009-10-21 Thread Randy Lent
I am currently taking a class in Python. For the class, we are using version 2.6. I have attempted to install the Python Imaging Library on two different computers using this link http://effbot.org/downloads/PIL-1.1.6.win32-py2.6.exe [cid:image001.png@01CA51A5.9DEC4040] In both cases, the pil

Re: [Image-SIG] transparency in palette mode ( "P" ) images

2009-10-21 Thread David Kwast
On Tue, Oct 20, 2009 at 4:51 PM, Ivan Mincik wrote: > > On Tue, Oct 20, 2009 at 8:33 PM, Laura & Edward Cannon > wrote: > > Hm.. you seem to be right. One thing you might do is im = > > Image.open("test.png").convert("RGBA") which seems to solve the > > transparency problem, at the expense of a s

Re: [Image-SIG] transparency in palette mode ( "P" ) images

2009-10-21 Thread Laura & Edward Cannon
Hm.. you seem to be right. One thing you might do is im = Image.open("test.png").convert("RGBA") which seems to solve the transparency problem, at the expense of a slightly larger image file. Looking closer I think that PIL seems to support only RGB palettes rather than RGBA palettes as does the PN