Subject: CVS commit: pkgsrc/graphics
To: None <pkgsrc-changes@netbsd.org>
From: Matthias Drochner <drochner@netbsd.org>
List: pkgsrc-changes
Date: 02/14/2002 13:39:47
Module Name: pkgsrc
Committed By: drochner
Date: Thu Feb 14 11:39:47 UTC 2002
Modified Files:
pkgsrc/graphics/py-imaging: Makefile distinfo
pkgsrc/graphics/py-imagingtk: Makefile distinfo
Log Message:
update to 1.1.2
Changes:
+ Adapted to Python 2.1. Among other things, all uses of the
"regex" module has been repleased with "re".
+ Fixed attribute error when reading large PNG files (this bug
was introduced in maintenance code released after the 1.1.1
release)
+ Ignore non-string objects in sys.path
+ Fixed Image.transform(EXTENT) for negative xoffsets
+ Fixed loading of image plugins if PIL is installed as a package.
(The plugin loader now always looks in the directory where the
Image.py module itself is found, even if that directory isn't on
the standard search path)
+ The Png plugin has been added to the list of preloaded standard
formats
+ Fixed bitmap/text drawing in fill mode.
+ Fixed "getextrema" to work also for multiband images.
+ Added transparency support for L and P images to the PNG codec.
+ Improved support for read-only images. The "load" method now
sets the "readonly" attribute for memory-mapped images. Operations
that modifies an image in place (such as "paste" and drawing operations)
creates an in-memory copy of the image, if necessary. (before this
change, any attempt to modify a memory-mapped image resulted in a
core dump...)
+ Added special cases for lists everywhere PIL expects a sequence.
This should speed up things like "putdata" and drawing operations.
+ The Image.offset method is deprecated. Use the ImageChops.offset
function instead.
+ Changed ImageChops operators to copy palette and info dictionary
from the first image argument.
To generate a diff of this commit:
cvs rdiff -r1.11 -r1.12 pkgsrc/graphics/py-imaging/Makefile
cvs rdiff -r1.2 -r1.3 pkgsrc/graphics/py-imaging/distinfo
cvs rdiff -r1.3 -r1.4 pkgsrc/graphics/py-imagingtk/Makefile
cvs rdiff -r1.2 -r1.3 pkgsrc/graphics/py-imagingtk/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.