add python-pillow The friendly PIL fork (Python Imaging Library)

This commit is contained in:
groni
2016-06-19 11:40:37 +02:00
parent aadbd160bc
commit b979242919
11 changed files with 243 additions and 2 deletions
@@ -0,0 +1,38 @@
--- Imaging-1.1.7-orig/PIL/TiffImagePlugin.py 2009-11-01 02:44:12.000000000 +0200
+++ Imaging-1.1.7/PIL/TiffImagePlugin.py 2012-11-13 03:45:11.280000132 +0200
@@ -69,7 +69,7 @@
def il32(c,o=0):
return ord(c[o]) + (ord(c[o+1])<<8) + (ord(c[o+2])<<16) + (ord(c[o+3])<<24)
def ol16(i):
- return chr(i&255) + chr(i>>8&255)
+ return chr(i>>8&255) + chr(i&255)
def ol32(i):
return chr(i&255) + chr(i>>8&255) + chr(i>>16&255) + chr(i>>24&255)
@@ -197,6 +197,8 @@
}
PREFIXES = ["MM\000\052", "II\052\000", "II\xBC\000"]
+PREFIX_TO_BYTEORDER = {"MM":"b", "II":"l"}
+BYTEORDER_TO_PREFIX = {"b":"MM", "l":"II"}
def _accept(prefix):
return prefix[:4] in PREFIXES
@@ -219,6 +221,8 @@
self.o16, self.o32 = ol16, ol32
else:
raise SyntaxError("not a TIFF IFD")
+ self.byteorder = PREFIX_TO_BYTEORDER[self.prefix]
+
self.reset()
def reset(self):
@@ -749,7 +753,7 @@
def _save(im, fp, filename):
try:
- rawmode, prefix, photo, format, bits, extra = SAVE_INFO[im.mode]
+ rawmode, prefix, byteorder, photo, format, bits, extra = SAVE_INFO[im.mode]
except KeyError:
raise IOError, "cannot write mode %s as TIFF" % im.mode
@@ -0,0 +1,14 @@
--- Imaging-1.1.6.orig/PIL/GifImagePlugin.py 2006-12-03 11:37:15.000000000 +0000
+++ Imaging-1.1.6/PIL/GifImagePlugin.py 2008-10-02 14:51:43.000000000 +0100
@@ -352,6 +352,11 @@
for i in range(maxcolor):
s.append(chr(i) * 3)
+ if im.info.has_key('transparency'):
+ transparentIndex = im.info['transparency']
+ s.append('!' + chr(0xf9) + chr(4) + chr(1) + chr(0) + chr(0) +
+ chr(transparentIndex) + chr(0))
+
return s
def getdata(im, offset = (0, 0), **params):
@@ -0,0 +1,13 @@
--- Imaging-1.1.6/Sane/_sane.c.orig 2006-12-03 13:12:22.000000000 +0100
+++ Imaging-1.1.6/Sane/_sane.c 2009-02-28 11:41:19.000000000 +0200
@@ -1152,8 +1152,8 @@
static PyObject *
PySane_get_devices(PyObject *self, PyObject *args)
{
- SANE_Device **devlist;
- SANE_Device *dev;
+ const SANE_Device **devlist;
+ const SANE_Device *dev;
SANE_Status st;
PyObject *list;
int local_only, i;
@@ -0,0 +1,11 @@
--- python-imaging-1.1.6.old/Sane/_sane.c 2006-12-03 07:12:22.000000000 -0500
+++ python-imaging-1.1.6/Sane/_sane.c 2007-04-03 22:08:41.000000000 -0400
@@ -1156,7 +1156,7 @@
SANE_Device *dev;
SANE_Status st;
PyObject *list;
- int local_only, i;
+ int local_only=0, i;
if (!PyArg_ParseTuple(args, "|i", &local_only))
{