diff options
author | drochner <drochner@pkgsrc.org> | 2010-07-19 17:45:02 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2010-07-19 17:45:02 +0000 |
commit | cf5d38740b43233493b90694f6c9f690cb431604 (patch) | |
tree | 4ff0ee2dd93600ffbff1beba125d33e7526fc1c3 /graphics/py-imaging | |
parent | ea5fe337c06d858a9537852de34b6051d0a4bf74 (diff) | |
download | pkgsrc-cf5d38740b43233493b90694f6c9f690cb431604.tar.gz |
recognize a 16bit greyscale format with "white is zero" (which is
generated by some neutron image plate detector) -- PIL is lacking
some infrastructure here so it gets treated like "black is zero"
but this is fine for me because I don't want to interpret it
photometrically anyway
Diffstat (limited to 'graphics/py-imaging')
-rw-r--r-- | graphics/py-imaging/Makefile | 4 | ||||
-rw-r--r-- | graphics/py-imaging/distinfo | 3 | ||||
-rw-r--r-- | graphics/py-imaging/patches/patch-ac | 12 |
3 files changed, 16 insertions, 3 deletions
diff --git a/graphics/py-imaging/Makefile b/graphics/py-imaging/Makefile index 2f245af7521..15a5108779b 100644 --- a/graphics/py-imaging/Makefile +++ b/graphics/py-imaging/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.36 2010/01/18 09:59:07 wiz Exp $ +# $NetBSD: Makefile,v 1.37 2010/07/19 17:45:02 drochner Exp $ DISTNAME= Imaging-1.1.7 PKGNAME= ${PYPKGPREFIX}-imaging-1.1.7 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= graphics python MASTER_SITES= http://effbot.org/media/downloads/ diff --git a/graphics/py-imaging/distinfo b/graphics/py-imaging/distinfo index a616072eae9..fbf7db3f412 100644 --- a/graphics/py-imaging/distinfo +++ b/graphics/py-imaging/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.12 2009/12/11 21:37:30 drochner Exp $ +$NetBSD: distinfo,v 1.13 2010/07/19 17:45:02 drochner Exp $ SHA1 (python/Imaging-1.1.7.tar.gz) = 76c37504251171fda8da8e63ecb8bc42a69a5c81 RMD160 (python/Imaging-1.1.7.tar.gz) = 9af570fe100e250a4860314341fe3e6d695d7fde Size (python/Imaging-1.1.7.tar.gz) = 498749 bytes SHA1 (patch-ab) = 563eff2d51db778711946734871f790643851086 +SHA1 (patch-ac) = 2ad2a988c7fdddb34812959ddfd60442282a48ea diff --git a/graphics/py-imaging/patches/patch-ac b/graphics/py-imaging/patches/patch-ac new file mode 100644 index 00000000000..889515b61da --- /dev/null +++ b/graphics/py-imaging/patches/patch-ac @@ -0,0 +1,12 @@ +$NetBSD: patch-ac,v 1.1 2010/07/19 17:45:03 drochner Exp $ + +--- PIL/TiffImagePlugin.py.orig 2010-07-19 14:29:50.000000000 +0000 ++++ PIL/TiffImagePlugin.py +@@ -131,6 +131,7 @@ OPEN_INFO = { + # (ByteOrder, PhotoInterpretation, SampleFormat, FillOrder, BitsPerSample, + # ExtraSamples) => mode, rawmode + (II, 0, 1, 1, (1,), ()): ("1", "1;I"), ++ (II, 0, 1, 1, (16,), ()): ("I;16", "I;16"), + (II, 0, 1, 2, (1,), ()): ("1", "1;IR"), + (II, 0, 1, 1, (8,), ()): ("L", "L;I"), + (II, 0, 1, 2, (8,), ()): ("L", "L;IR"), |