Hi there, I'm moving from Django to GAE Python, there's only one thing
I'm struggling with.
I create a thumbnail of all my images as greyscale/grayscale and store
them alongside my full colour thumbnails. But can't get it working in
Google App Engine.

Any help would be awesome.

I'd love to simply make a call in a URL:
http://site.com/images/gHf557hHk?colour=false

Which simply shows a grey/gray version.
Here's how I was doing it in Django/PIL ... But it doesn't translate
to GAE.

thumb = image.resize(size, Image.ANTIALIAS)
thumb = thumb.convert('L')

Any ideas would be amazing.
Thanks so much in advance, hope you're well ...

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to