views:

60

answers:

1

What is python-3 using instead of PIL for manipulating Images?

+1  A: 

PIL will be eventually ported to Python 3. Check this message in the mailing list: http://mail.python.org/pipermail/image-sig/2009-March/005498.html

As to what you can use NOW, I've no idea. I'm sticking with Python 2.6 until 3.0 has more widespread support from third-party libraries.

Maybe you could do the image work in some other language.

Santiago Lezica