This commit is contained in:
Alex Clark 2013-03-15 08:47:10 -04:00
parent e72c404f5f
commit 10da86b601
2 changed files with 7 additions and 5 deletions

View File

@ -7,7 +7,12 @@ Changelog (Pillow)
- Add Python 3 support. (Pillow >= 2.0.0 supports Python 2.6, 2.7, 3.2, 3.3. Pillow < 2.0.0 supports Python 2.4, 2.5, 2.6, 2.7.)
[fluggo]
- Add experimental Tiff G3/G4 support.
- Add PyPy support (experimental, please see: https://github.com/python-imaging/Pillow/issues/67)
- Add WebP support.
[lqs]
- Add Tiff G3/G4 support (experimental)
[wiredfool]
- Backport PIL's PNG/Zip improvements.
@ -22,9 +27,6 @@ Changelog (Pillow)
- Added support for PNG images with transparency palette.
[d-schmidt]
- Add WebP support (Python 2.x only, see: https://github.com/python-imaging/Pillow/issues/109)
[lqs]
- Many other bug fixes and enhancements by many other people (see commit log and/or docs/CONTRIBUTORS.txt).
1.7.8 (2012-11-01)

View File

@ -392,7 +392,7 @@ class pil_build_ext(build_ext):
(feature.tcl and feature.tk, "TKINTER"),
(feature.jpeg, "JPEG"),
(feature.zlib, "ZLIB (PNG/ZIP)"),
(feature.tiff, "TIFF G3/G4 read (experimental)"),
(feature.tiff, "TIFF G3/G4 (experimental)"),
(feature.freetype, "FREETYPE2"),
(feature.lcms, "LITTLECMS"),
(feature.webp, "WEBP"),