Pillow/docs/releasenotes/3.2.0.rst

37 lines
1.2 KiB
ReStructuredText
Raw Normal View History

3.2.0
2016-04-01 16:58:41 +03:00
-----
2016-02-01 16:50:05 +03:00
New DDS and FTEX Image Plugins
==============================
2016-04-01 16:58:41 +03:00
The ``DdsImagePlugin`` reading DXT1 and DXT5 encoded ``.dds`` images was
added. DXT3 images are not currently supported.
2016-04-01 16:58:41 +03:00
The ``FtexImagePlugin`` reads textures used for 3D objects in
2016-02-01 16:50:05 +03:00
Independence War 2: Edge Of Chaos. The plugin reads a single texture
2016-04-01 16:58:41 +03:00
per file, in the ``.ftc`` (compressed) and ``.ftu`` (uncompressed)
2016-02-01 16:50:05 +03:00
formats.
Updates to the GbrImagePlugin
=============================
2016-04-01 16:58:41 +03:00
The ``GbrImagePlugin`` (GIMP brush format) has been updated to fix
support for version 1 files and add support for version 2 files.
Passthrough Parameters for ImageDraw.text
=========================================
2016-04-01 16:58:41 +03:00
``ImageDraw.multiline_text`` and ``ImageDraw.multiline_size`` take extra
spacing parameters above what are used in ``ImageDraw.text`` and
``ImageDraw.size``. These parameters can now be passed into
``ImageDraw.text`` and ``ImageDraw.size`` and they will be passed through
2016-02-01 12:53:55 +03:00
to the corresponding multiline functions.
ImageSequence.Iterator changes
==============================
2016-04-01 16:58:41 +03:00
``ImageSequence.Iterator`` is now an actual iterator implementing the
Iterator protocol. It is also now possible to seek to the first image
of the file when using direct indexing.