vote up 1 vote down star

I'm on the google appengine, and trying to resize images. I do :

from google.appengine.api import images
image = images.resize(contents, w, h)

And for some images I get a nice transparent resize, and others I get a black background.

How can I keep the transparency for all images?

flag

3 Answers

vote up 0 vote down

Article on this problem: http://doesnotvalidate.com/2009/resizing-transparent-images-with-django-pil/ Google-code patch: http://code.google.com/p/sorl-thumbnail/issues/detail?id=56

link|flag
That looks like a django thumbnail application. Can I use PIL directly on app-engine? – Paul Tarjan Sep 25 at 18:12
I've tried, and I can't use PIL in app-engine. Do you have a pure python implementation? – Paul Tarjan Sep 26 at 6:24
vote up 0 vote down

Is this on the dev appserver, or in production? There's a known bug on the dev appserver that turns transparent to black when compositing, but it should run fine in production.

link|flag
Production. Dev works perfectly : paulisageek.com:4266/gartoon/application/… – Paul Tarjan Sep 26 at 10:49
vote up 0 vote down

With PIL you have to convert your image in RGBA like this :

im = im.convert("RGBA")

If you want a better implementation, you can read the sorl-thumbnail code. It makes a good usage of PIL.

link|flag
I wish I had real PIL on the appengine :( – Paul Tarjan Oct 9 at 6:23
The question is why are you using appengine instead of PIL ? I am quite sure that appengine use PIL so ... – Natim Oct 9 at 6:35
I don't know what they use underneath, but import PIL doesn't work, nor do they expose any function to do what you recommend. (and they won't let me ship them PIL because it has compiled C code) – Paul Tarjan Oct 13 at 6:37
import Imaging and not PIL – Natim Oct 13 at 6:51
On appengine: <type 'exceptions.ImportError'>: No module named Imaging Traceback (most recent call last): File "/base/data/home/apps/openicon/1.337362201776746924/main.py", line 8, in <module> import Imaging – Paul Tarjan Oct 28 at 23:23
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.