-------
- Fixed a memory leak in "convert(mode)", when converting from
L to P.
- Added pixel access object. The "load" method now returns a
access object that can be used to directly get and set pixel
values, using ordinary [x, y] notation::
pixel = im.load()
v = pixel[x, y]
pixel[x, y] = v
If you're accessing more than a few pixels, this is a lot
faster than using getpixel/putpixel.
- Fixed building on Cygwin (from Miki Tebeka).
- Fixed "point(callable)" on unloaded images (reported by Håkan
Karlsson).
- Fixed size bug in ImageWin.ImageWindow constructor (from Victor
Reijs)
- Fixed ImageMath float() and int() operations for Python 2.4
(reported by Don Rozenberg).
- Fixed "RuntimeError: encoder error -8 in tostring" problem for
wide "RGB", "I", and "F" images.
- Fixed line width calculation.