Improved ImageFont documentation [ci skip]

This commit is contained in:
Andrew Murray 2019-08-12 20:04:18 +10:00
parent 6de118abd3
commit 8fb437d37f

View File

@ -549,8 +549,12 @@ def truetype(font=None, size=10, index=0, encoding="", layout_engine=None):
This function requires the _imagingft service. This function requires the _imagingft service.
:param font: A filename or file-like object containing a TrueType font. :param font: A filename or file-like object containing a TrueType font.
Under Windows, if the file is not found in this filename, If the file is not found in this filename, the loader may also
the loader also looks in Windows :file:`fonts/` directory. search in other directories, such as the :file:`fonts/`
directory on Windows or :file:`/Library/Fonts/`,
:file:`/System/Library/Fonts/` and :file:`~/Library/Fonts/` on
macOS.
:param size: The requested size, in points. :param size: The requested size, in points.
:param index: Which font face to load (default is first available face). :param index: Which font face to load (default is first available face).
:param encoding: Which font encoding to use (default is Unicode). Common :param encoding: Which font encoding to use (default is Unicode). Common