We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13cedb9 commit f2987d6Copy full SHA for f2987d6
docs/releasenotes/9.1.0.rst
@@ -157,7 +157,8 @@ Added PyEncoder
157
^^^^^^^^^^^^^^^
158
159
:py:class:`~PIL.ImageFile.PyEncoder` has been added, allowing for file encoders to be
160
-written in Python.
+written in Python. See :ref:`Writing Your Own File Codec in Python<file-codecs-py>` for
161
+more information.
162
163
Other Changes
164
=============
src/PIL/ImageFile.py
@@ -702,6 +702,8 @@ class PyEncoder(PyCodec):
702
"""
703
Python implementation of a format encoder. Override this class and
704
add the decoding logic in the :meth:`encode` method.
705
+
706
+ See :ref:`Writing Your Own File Codec in Python<file-codecs-py>`
707
708
709
_pushes_fd = False
0 commit comments