2013-10-13 04:14:12 +04:00
|
|
|
.. py:module:: PIL.ImageFont
|
|
|
|
.. py:currentmodule:: PIL.ImageFont
|
|
|
|
|
2020-06-22 06:52:50 +03:00
|
|
|
:py:mod:`~PIL.ImageFont` Module
|
|
|
|
===============================
|
2013-10-13 04:14:12 +04:00
|
|
|
|
2020-06-22 06:52:50 +03:00
|
|
|
The :py:mod:`~PIL.ImageFont` module defines a class with the same name. Instances of
|
2013-10-13 04:14:12 +04:00
|
|
|
this class store bitmap fonts, and are used with the
|
2020-07-09 20:48:04 +03:00
|
|
|
:py:meth:`PIL.ImageDraw.ImageDraw.text` method.
|
2013-10-13 04:14:12 +04:00
|
|
|
|
2020-11-04 13:52:00 +03:00
|
|
|
PIL uses its own font file format to store bitmap fonts. You can use
|
|
|
|
`pilfont.py <https://github.com/python-pillow/pillow-scripts/blob/master/Scripts/pilfont.py>`_
|
|
|
|
from `pillow-scripts <https://pypi.org/project/pillow-scripts/>`_ to convert BDF and
|
|
|
|
PCF font descriptors (X window font formats) to this format.
|
2013-10-13 04:14:12 +04:00
|
|
|
|
|
|
|
Starting with version 1.1.4, PIL can be configured to support TrueType and
|
|
|
|
OpenType fonts (as well as other font formats supported by the FreeType
|
|
|
|
library). For earlier versions, TrueType support is only available as part of
|
2020-05-21 00:17:56 +03:00
|
|
|
the imToolkit package.
|
2013-10-13 04:14:12 +04:00
|
|
|
|
|
|
|
Example
|
|
|
|
-------
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
from PIL import ImageFont, ImageDraw
|
|
|
|
|
|
|
|
draw = ImageDraw.Draw(image)
|
|
|
|
|
|
|
|
# use a bitmap font
|
|
|
|
font = ImageFont.load("arial.pil")
|
|
|
|
|
|
|
|
draw.text((10, 10), "hello", font=font)
|
|
|
|
|
|
|
|
# use a truetype font
|
|
|
|
font = ImageFont.truetype("arial.ttf", 15)
|
|
|
|
|
|
|
|
draw.text((10, 25), "world", font=font)
|
|
|
|
|
|
|
|
Functions
|
|
|
|
---------
|
|
|
|
|
|
|
|
.. autofunction:: PIL.ImageFont.load
|
|
|
|
.. autofunction:: PIL.ImageFont.load_path
|
|
|
|
.. autofunction:: PIL.ImageFont.truetype
|
|
|
|
.. autofunction:: PIL.ImageFont.load_default
|
|
|
|
|
|
|
|
Methods
|
|
|
|
-------
|
|
|
|
|
2019-07-07 13:52:30 +03:00
|
|
|
.. autoclass:: PIL.ImageFont.ImageFont
|
|
|
|
:members:
|
2019-04-21 16:27:31 +03:00
|
|
|
|
|
|
|
.. autoclass:: PIL.ImageFont.FreeTypeFont
|
2019-04-21 16:28:08 +03:00
|
|
|
:members:
|
2019-07-07 13:52:30 +03:00
|
|
|
|
|
|
|
.. autoclass:: PIL.ImageFont.TransposedFont
|
|
|
|
:members:
|
2020-08-11 03:12:26 +03:00
|
|
|
|
|
|
|
Constants
|
|
|
|
---------
|
|
|
|
|
|
|
|
.. data:: PIL.ImageFont.LAYOUT_BASIC
|
|
|
|
|
|
|
|
Use basic text layout for TrueType font.
|
|
|
|
Advanced features such as text direction are not supported.
|
|
|
|
|
|
|
|
.. data:: PIL.ImageFont.LAYOUT_RAQM
|
|
|
|
|
|
|
|
Use Raqm text layout for TrueType font.
|
|
|
|
Advanced features are supported.
|
|
|
|
|
|
|
|
Requires Raqm, you can check support using
|
|
|
|
:py:func:`PIL.features.check_feature` with ``feature="raqm"``.
|