pillow v1.1.6.a1 Release Notes

    • πŸ›  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.