Oliver Tonnhofer
1db3f9d53f
Revert "Fix KeyError in Tests/test_file_xpm.py"
...
This reverts commit b29326b175
.
2013-03-11 19:02:44 +01:00
Alex Clark
6999860786
Revert "Use relative import for _imagingagg"
...
This reverts commit 34a5311e1b
.
2013-03-08 18:43:52 -05:00
Alex Clark
de077c9d37
Revert "Use relative import for _imagingtk"
...
This reverts commit 5820716eb3
.
2013-03-08 18:43:00 -05:00
Alex Clark
6e00a9c355
Revert "Use relative import for _imaginggl"
...
This reverts commit 5e203de327
.
2013-03-08 18:42:21 -05:00
Alex Clark
4546d26413
Revert "Better import for _imagingft"
...
This reverts commit 089a04bce1
.
2013-03-08 18:41:19 -05:00
Alex Clark
44d25a238c
Revert "Use relative import for _imagingcms"
...
This reverts commit 1003e4f7ee
.
2013-03-08 18:40:21 -05:00
Alex Clark
cbb93ac5bf
Revert "Use relative import for _imagingmath"
...
This reverts commit c731513318
.
2013-03-08 18:39:17 -05:00
Alex Clark
33f42c7fbd
Revert "Use relative import for _imaging"
...
This reverts commit aff6eccec5
.
2013-03-08 18:38:26 -05:00
Alex Clark
fd81ee9336
Fix imports
2013-03-08 17:39:50 -05:00
Christoph Gohlke
34a5311e1b
Use relative import for _imagingagg
2013-03-08 13:47:41 -08:00
Christoph Gohlke
5820716eb3
Use relative import for _imagingtk
2013-03-08 13:43:43 -08:00
Christoph Gohlke
c731513318
Use relative import for _imagingmath
2013-03-08 13:40:30 -08:00
Christoph Gohlke
5e203de327
Use relative import for _imaginggl
2013-03-08 13:38:37 -08:00
Christoph Gohlke
089a04bce1
Better import for _imagingft
2013-03-08 13:36:32 -08:00
Christoph Gohlke
1003e4f7ee
Use relative import for _imagingcms
2013-03-08 13:34:08 -08:00
Christoph Gohlke
aff6eccec5
Use relative import for _imaging
2013-03-08 13:30:41 -08:00
Christoph Gohlke
caba4e33ba
Fix AttributeError: 'module' object has no attribute 'spawn'
2013-03-08 11:15:28 -08:00
Alex Clark
b03abf2e58
Merge branch 'master' of https://github.com/etienned/Pillow into etienned-master
2013-03-08 08:36:53 -05:00
Alex Clark
0c18a8f3b8
Use bytes literal, fixes Tests/test_file_fli.py
2013-03-08 08:01:56 -05:00
Alex Clark
b29326b175
Fix KeyError in Tests/test_file_xpm.py
2013-03-07 15:20:52 -05:00
Alex Clark
3020c16eaa
Fix imports
2013-03-07 11:20:28 -05:00
Alex Clark
f29950bc6d
Fix typo
2013-03-07 08:52:44 -05:00
Alex Clark ☺
cd1cc66d4d
Merge pull request #73 from pelson/tiff_tags
...
Added the ``named`` method to a Tiffs tag getter.
2013-03-07 05:51:39 -08:00
Phil Elson
603f2a226f
Added the `named
` method to a Tiffs tag getter.
2013-03-07 12:00:19 +00:00
Mikhail Korobov
c59c6609f3
Restore fromstring & tostring aliases in 3.x
2013-03-07 15:23:40 +06:00
etienne
55f2dc7b0b
Added quantization tables and subsampling options to the JPEG encoder.
2013-03-06 20:23:02 -05:00
Kyle MacFarlane
de17144f6b
Fix Ghostscript command on Windows
2013-03-06 17:36:22 +00:00
Alex Clark ☺
001a1521cb
Merge pull request #64 from kmike/master
...
Testing improvements and better Python 3.x support
2013-03-05 12:11:07 -08:00
Alex Clark ☺
d58006af39
Merge pull request #57 from garnertb/exif_tags
...
Updated tags to the 2.3 standard and fixed spelling error in the comment...
2013-03-05 12:03:24 -08:00
Alex Clark ☺
d097fa068c
Merge pull request #56 from cgohlke/patch-4
...
BUG: PIL Image array interface has the wrong size for YCbCr
2013-03-05 12:02:05 -08:00
Alex Clark ☺
9ed98814ce
Merge pull request #53 from cgohlke/patch-1
...
BUG: Windows image viewer unable to open image
2013-03-05 10:47:45 -08:00
Mikhail Korobov
a71183dab5
better fix for #15 (with a test case now)
2013-02-26 17:12:11 +06:00
Mikhail Korobov
ee794e1501
An attempt to fix #15 for Python 3.x.
...
TiffImagePlugin.ImageFileDirectory.__getattr__ is magical because it deletes items from "tagdata" variable and this plays badly with TiffImagePlugin.ImageFileDirectory.__iter__. Under Python 2.x items() returned a list and this wasn't a problem (because __iter__ value was evalued once); under Python 3.x items() returns a view/iterator that chains self.tags and self.tagdata and iteration begins to fail with "RuntimeError: dictionary changed size during iteration" exception because tagdata item is modified.
In this changeset I've tried to fix this by evaluating items() when the loop starts (by casting it to list), so that it doesn't matter if tagdata is changed during iteration or not.
There is no tests because _getexif is currently private. But this method is used by easy-thumbnails and sorl.thumbnails, so I think it is worth fixing it.
2013-02-26 16:44:47 +06:00
Mikhail Korobov
bb4eb53859
fix UnboundLocalError errors
2013-02-26 16:31:44 +06:00
Mikhail Korobov
aacb8097c3
better warning messages for fromstring/tostring
2013-02-26 16:19:35 +06:00
Tyler Garner
fa2b10d5da
Updated tags to the 2.3 standard and fixed spelling error in the comments.
2013-02-16 11:16:16 -05:00
Christoph Gohlke
bb07471d2e
BUG: PIL Image array interface has the wrong size for YCbCr
2013-02-13 19:52:32 -08:00
Christoph Gohlke
dbf3d993ed
BUG: Windows image viewer unable to open image
...
The issue was reported several times during the past years.
The temporary bitmap file is deleted before the image viewer is started. The workaround is to wait some time before deleting the file.
http://stackoverflow.com/questions/4607633/image-format-to-save-in-python
http://stackoverflow.com/questions/7715501/pil-image-show-doesnt-work-on-windows-7
2013-02-13 18:23:30 -08:00
Alex Clark
cb4f0f2b3c
Revert "Fix saving images with added transparency"
...
This reverts commit cc439099c1
.
2013-02-06 09:25:03 -05:00
Sandro Mani
cc439099c1
Fix saving images with added transparency
...
See http://mail.python.org/pipermail/image-sig/1999-February/000648.html
This patch was carried by fedora for python-imaging
2013-02-06 00:49:26 +01:00
David Schmidt
5baa1ac1b8
Added support for PNG images with transparency palette
2013-02-01 17:52:22 +01:00
David Schmidt
e90d90d60a
Fixed another PIL Pillow difference bug
2013-01-11 14:41:38 +01:00
David Schmidt
33bf5d9d37
Improved load truncated images
2013-01-11 14:40:02 +01:00
David Schmidt
ee04c7ceea
Fixed another difference between PIL and Pillow
2013-01-11 13:24:44 +01:00
d-schmidt
addf0f4d95
Added possibility to save exif information in jpeg-files
2013-01-10 21:36:21 +01:00
d-schmidt
54d4f5eb3c
added option to load truncated image-files
2013-01-10 20:44:41 +01:00
d-schmidt
900f3a8ff7
Added possibility to save gifs with a custom palette when using color mode P
2013-01-10 20:34:58 +01:00
Brian J. Crowell
c952134e00
py3k: Issue warnings when using the old fromstring/tostring
...
...although, you have to turn on deprecation warnings specifically in order
to get them.
2013-01-10 08:47:05 -06:00
Brian Crowell
848579af9b
py3k: Add Windows icon sanity test
2013-01-10 08:47:04 -06:00
Brian Crowell
276cc421f7
py3k: Add XPM read test
...
This test includes an XPM file with transparency.
2013-01-10 08:47:03 -06:00