views:

40

answers:

2

Using python App Engine I need to convert a JPG image that is one 9 MB file (of Pakistan's floods) into many PNG tiles.

For the PNG part, I already know how to use PyPNG, which is great. Note: PIL cant be used with App Engine.

So how do I decode the JPG into pixel data?

A: 

You can use the efforts here to get a pure python JPEG Parser. Why the absolute need to use App Engine ? If you want more flexible library usage try EC2.

whatnick
A: 

Using Image class and crop and execute_transforms to encode as png?

Note: You should provide relevant part of your code

RC
i think the image api service has a 1MB size limit. My file is 9MB.
indiehacker