Re: [Image-SIG] Adding Python 3 support

2012-10-08 Thread Hajime Nakagami
Hi Brian, and all I'm trying to suport python3.3 and python2.7 by one source https://github.com/nakagami/Pillow (please checkout py33py27 branch) It seems to work at gif, jpeg and png. But other many image format still not work. That's most import bug(?) is only support Python2.7 and Python3.3

Re: [Image-SIG] Converting from CMYK to RGB

2013-07-05 Thread Hajime Nakagami
Hi Matti image.convert('RGB') this code return converted image but abandoned Please rewrite as below image = image.convert('RGB') 2013/7/1 Matti Viljamaa mvilja...@kapsi.fi I'm trying to handle CMYK images by converting them to RGB. I'm using the following code snippet: import sys