I think you use Pil to generate an image file on the disk, and you later load it with an image reader software.
You should get a small speed improvement by rendering directly the picture in memory (you will save the cost of writing the image on the disk and then re-loading it). Have a look at this thread http://stackoverflow.com/questions/326300/python-best-library-for-drawing for how to render that image with various python modules.
I would personally try wxpython and the dc.DrawBitmap function. With using If you use such a module rather than an external image reader you will have many benefits:
- faster
- speed
- you will be able to easily program a Zoomin and Zoomout
- you can create an interactive user interface with buttons and for parameters.
- you will be able to easily program a Zoomin and Zoomout function
- you will be able to plot the image as you compute it, which can be quite useful if the computation takes a lot of time
