This is an excerpt from The Python Imaging Library Handbook, taken from the chapter The Image Module.

The Image Module

load #

im.load()

Allocates storage for the image and loads it from the file (or from the source, for lazy operations). In normal cases, you don’t need to call this method, since the Image class automatically loads an opened image when it is accessed for the first time.

(New in 1.1.6) In 1.1.6 and later, load returns a pixel access object that can be used to read and modify pixels. The access object behaves like a 2-dimensional array, so you can do:

pix = im.load()
print pix[x, y]
pix[x, y] = value

Access via this object is a lot faster than getpixel and putpixel.

[read this entry in context]

A Django site. this page was rendered by a django application in 0.00s 2008-05-17 18:00:20.714465. hosted by webfaction.