diff options
author | drochner <drochner@pkgsrc.org> | 2002-02-14 11:39:46 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2002-02-14 11:39:46 +0000 |
commit | b66588e93951c34e6e2274a4cb64dafb63dc3102 (patch) | |
tree | 7489debf362af83400b2d944d89ca49867d3acaa /graphics/py-imaging/Makefile | |
parent | 7fa065631eab1c3e5f56d27e9d38fc08866cfed7 (diff) | |
download | pkgsrc-b66588e93951c34e6e2274a4cb64dafb63dc3102.tar.gz |
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.
Diffstat (limited to 'graphics/py-imaging/Makefile')
-rw-r--r-- | graphics/py-imaging/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/py-imaging/Makefile b/graphics/py-imaging/Makefile index 1abdd8f565a..547e6f8a9d8 100644 --- a/graphics/py-imaging/Makefile +++ b/graphics/py-imaging/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.11 2002/01/19 17:34:24 drochner Exp $ +# $NetBSD: Makefile,v 1.12 2002/02/14 11:39:46 drochner Exp $ -DISTNAME= Imaging-1.1.1 -PKGNAME= ${PYPKGPREFIX}-imaging-1.1.1 +DISTNAME= Imaging-1.1.2 +PKGNAME= ${PYPKGPREFIX}-imaging-1.1.2 CATEGORIES= graphics MASTER_SITES= http://www.pythonware.com/downloads/ |