Re: [Image-SIG] PIL builds for Mac OS X

2008-04-15 Thread Chris.Barker
Rodrigo Dias Arruda Senra wrote: >> with a standard Apple Python install, the python.org distribution, or >> some other version? >> > > I am running the standard Apple Python install. > > Are you sure? I thought Apple put theirs in /System/Library, rather than /Library. Also, I'm pretty s

Re: [Image-SIG] PIL for python 3.2

2011-08-26 Thread Chris.Barker
On 8/26/11 8:19 AM, Ingo Randolf wrote: another attempt to make PIL run with python3.2 on osx 10.6.7 I found an unofficial release of PIL for py3.2: https://github.com/sloonz/pil-py3k/tree/a75c372ed17b3d06c0d58c1db03c9215da9c4bbb it compiles and installs fine with python3.2 when i want to open

Re: [Image-SIG] float rgba list -> Image

2011-08-31 Thread Chris.Barker
On 8/31/11 9:27 AM, Christoph Gohlke wrote: On 8/31/2011 7:21 AM, Ingo Randolf wrote: I have a list with float-values describing an image like this: [R, G, B, A, R, G, B, A, R, G, B, A, R, G, B, A, R, G, B, A, ... etc.] I can't help but wonder why it's in that data structure to begin with --

Re: [Image-SIG] float rgba list -> Image

2011-09-02 Thread Chris.Barker
ray object? That's in the stdlib at least, though the scaling will be slower than numpy -Chris ingo Am 31.08.2011 um 20:51 schrieb Chris.Barker: On 8/31/11 9:27 AM, Christoph Gohlke wrote: On 8/31/2011 7:21 AM, Ingo Randolf wrote: I have a list with float-values describing an imag

Re: [Image-SIG] Regarding Python Imaging Library

2011-09-07 Thread Chris.Barker
On 9/6/11 8:08 PM, Anupam Kumar wrote: I was trying to install the python imaging library on my Mac OS X with Python 2.7. Can you send me the download and installation instructions for PIL? your best bet is the "unofficial" binary here: http://www.astro.washington.edu/users/rowen/python/ for

Re: [Image-SIG] Does PIL ImageDraw create shape objects or stain pixels?

2011-11-02 Thread Chris.Barker
On 10/26/11 2:49 PM, Jeff Brantley wrote: I am working on code to draw tens or hundreds of thousands of squares and connecting lines using the tkinter canvas, and it is incredibly slow because, as I understand it, the canvas keeps the individual shape objects around in memory and tests for the cu

Re: [Image-SIG] Does PIL ImageDraw create shape objects or stain pixels?

2011-11-03 Thread Chris.Barker
On 11/2/11 2:17 PM, Jeff Brantley wrote: Thank you both for the feedback. In the meantime, I made some major changes to my drawing algorithm that resulted in about a 20X reduction in width and probably a similar factor reduction in the number of line objects drawn. Now the tk canvas performance p