Alternative Python image libraries in Google App Engine?

I am thinking about uploading images to the Google App Engine, but I need to brighten parts of the image. I'm not sure if the App Engine API will be enough. I believe that try blending with a white image and partial opacity.

However, if this does not produce the desired results, will there be another Python image library that works with the App Engine? Basically, it was supposed to be pure Python (no related C code or anything else).

+4
source share
1 answer

PNGcanvas can help if PNG input and output are satisfactory - it does not directly offer the โ€œbrightโ€ functionality required, but it allows you to load and save PNG files into memory and access them directly from Python, and this is the only simple Python source file.

+4
source

All Articles