Added release notes

This commit is contained in:
Andrew Murray 2021-08-06 22:41:44 +10:00
parent 929c561937
commit 0c43da5e3c

View File

@ -19,8 +19,17 @@ the default required length, also removing the need for the size parameter.
API Additions API Additions
============= =============
TODO Added "transparency" argument for loading EPS images
^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This new argument switches the Ghostscript device from "ppmraw" to "pngalpha",
generating an RGBA image with a transparent background instead of an RGB image with a
white background.
.. code-block:: python
with Image.open("sample.eps") as im:
im.load(transparency=True)
TODO TODO