I am thinking about uploading images to Google App Engine, but I need to brighten parts of the image. I am not sure if the App Engine imagine API will be sufficient. I consider to try an overlay with a white image and partial opacity.

However, if that does not yield the desired results, would there be another Python imaging library that works with App Engine? Basically it would have to be pure Python (no associated C code or anything).

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

PNGcanvas might help, if PNG input and output is satisfactory -- it doesn't directly offer the "brighten" functionality you require, but it does let you load and save PNG files into memory and access them directly from Python, and it IS a single, simple Python source file.

link|improve this answer
Found this link to work: the.taoofmac.com/space/projects/PNGCanvas – darius May 3 '10 at 9:53
feedback

Your Answer

 
or
required, but never shown

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