| [ Web Proxy ] |
| Viewing: https://matplotlib.org/stable/api/_as_gen/../_as_gen/../_as_gen/../font_manager_api.html | [Back] [Original] |
matplotlib.font_manager#A module for finding, managing, and using fonts across platforms.
This module provides a single FontManager instance, fontManager, that can
be shared across backends and platforms. The findfont
function returns the best TrueType (TTF) font file in the local or
system font path that matches the specified FontProperties
instance. The FontManager also handles Adobe Font Metrics
(AFM) font files for use by the PostScript backend.
The FontManager.addfont function adds a custom font from a file without
installing it into your operating system.
The design is based on the W3C Cascading Style Sheet, Level 1 (CSS1) font specification. Future versions may implement the Level 2 or 2.1 specifications.
Bases: object
On import, the FontManager singleton instance creates a list of ttf and
afm fonts and caches their FontProperties. The FontManager.findfont
method does a nearest neighbor search to find the font that most closely
matches the specification. If no good enough match is found, the default
font is returned.
Fonts added with the FontManager.addfont method will not persist in the
cache; therefore, addfont will need to be called every time Matplotlib is
imported. This method should only be used if and when a font cannot be
installed on your operating system by other means.
Notes
The FontManager.addfont method must be called on the global FontManager
instance.
Example usage:
import matplotlib.pyplot as plt
from matplotlib import font_manager
font_dirs = ["/resources/fonts"] # The path to the custom font file.
font_files = font_manager.findSystemFonts(fontpaths=font_dirs)
for font_file in font_files:
font_manager.fontManager.addfont(font_file)
Cache the properties of the font at path to make it available to the
FontManager. The type of font is inferred from the path suffix.
Notes
This method is useful for adding a custom font without installing it in
your operating system. See the FontManager singleton instance for
usage and caveats about this function.
Find the path to the font file most closely matching the given font properties.
FontPropertiesThe font properties to search for. This can be either a
FontProperties object or a string defining a
fontconfig patterns.
The extension of the font file:
'ttf': TrueType and OpenType fonts (.ttf, .ttc, .otf)
'afm': Adobe Font Metrics (.afm)
If given, only search this directory and its subdirectories.
If MPL_IGNORE_SYSTEM_FONTS is set, then this defaults to
Matplotlib's internal font directory.
If True, will fall back to the default font family (usually "DejaVu Sans" or "Helvetica") if the first lookup hard-fails.
Whether to rebuild the font cache and search again if the first match appears to point to a nonexisting font (i.e., the font cache contains outdated entries).
The filename of the best matching font.
Notes
This performs a nearest neighbor search. Each font is given a similarity score to the target font properties. The first font with the highest score is returned. If no matches below a certain threshold are found, the default font (usually DejaVu Sans) is returned.
The result is cached, so subsequent lookups don't have to perform the O(n) nearest neighbor search.
See the W3C Cascading Style Sheet, Level 1 documentation for a description of the font finding algorithm.
Return a match score between the list of font families in families and the font family name family2.
An exact match at the head of the list returns 0.0.
A match further down the list will return between 0 and 1.
No match will return 1.0.
Return a match score between size1 and size2.
If size2 (the size specified in the font file) is 'scalable', this function always returns 0.0, since any font size can be generated.
Otherwise, the result is the absolute distance between size1 and size2, normalized so that the usual range of font sizes (6pt - 72pt) will lie between 0.0 and 1.0.
Return a match score between stretch1 and stretch2.
The result is the absolute value of the difference between the CSS numeric values of stretch1 and stretch2, normalized between 0.0 and 1.0.
Return a match score between style1 and style2.
An exact match returns 0.0.
A match between 'italic' and 'oblique' returns 0.1.
No match returns 1.0.
Return a match score between variant1 and variant2.
An exact match returns 0.0, otherwise 1.0.
Return a match score between weight1 and weight2.
The result is 0.0 if both weight1 and weight 2 are given as strings and have the same value.
Otherwise, the result is the absolute value of the difference between the CSS numeric values of weight1 and weight2, normalized between 0.05 and 1.0.
Bases: str
A class to describe a path to a font with a face index.
The path to a font.
The face index in the font.
The face index in a font.
The path to a font.
Bases: object
A class for storing and manipulating font properties.
The font properties are the six properties described in the W3C Cascading Style Sheet, Level 1 font specification and math_fontfamily for math fonts:
family: A list of font names in decreasing order of priority.
The items may include a generic font family name, either 'sans-serif',
'serif', 'cursive', 'fantasy', or 'monospace'. In that case, the actual
font to be used will be looked up from the associated rcParam during the
search process in findfont. Default: rcParams["font.family"] (default: ['sans-serif'])
style: Either 'normal', 'italic' or 'oblique'.
Default: rcParams["font.style"] (default: 'normal')
variant: Either 'normal' or 'small-caps'.
Default: rcParams["font.variant"] (default: 'normal')
stretch: A numeric value in the range 0-1000 or one of
'ultra-condensed', 'extra-condensed', 'condensed',
'semi-condensed', 'normal', 'semi-expanded', 'expanded',
'extra-expanded' or 'ultra-expanded'. Default: rcParams["font.stretch"] (default: 'normal')
weight: A numeric value in the range 0-1000 or one of
'ultralight', 'light', 'normal', 'regular', 'book', 'medium',
'roman', 'semibold', 'demibold', 'demi', 'bold', 'heavy',
'extra bold', 'black'. Default: rcParams["font.weight"] (default: 'normal')
size: Either a relative value of 'xx-small', 'x-small',
'small', 'medium', 'large', 'x-large', 'xx-large' or an
absolute font size, e.g., 10. Default: rcParams["font.size"] (default: 10.0)
math_fontfamily: The family of fonts used to render math text.
Supported values are: 'dejavusans', 'dejavuserif', 'cm',
'stix', 'stixsans' and 'custom'. Default: rcParams["mathtext.fontset"] (default: 'dejavusans')
Alternatively, a font may be specified using the absolute path to a font
file, by using the fname kwarg. However, in this case, it is typically
simpler to just pass the path (as a pathlib.Path, not a str) to the
font kwarg of the Text object.
The preferred usage of font sizes is to use the relative values, e.g., 'large', instead of absolute font sizes, e.g., 12. This approach allows all text sizes to be made larger or smaller based on the font manager's default font size.
This class accepts a single positional string as fontconfig pattern, or alternatively individual properties as keyword arguments:
FontProperties(pattern)
FontProperties(*, family=None, style=None, variant=None, ...)
This support does not depend on fontconfig; we are merely borrowing its pattern syntax for use here.
Note that Matplotlib's internal font manager and fontconfig use a different algorithm to lookup fonts, so the results of the same pattern may be different in Matplotlib than in other applications that use fontconfig.
Return a list of individual font family names or generic family names.
The font families or generic font families (which will be resolved from their respective rcParams when searching for a matching font) in the order of preference.
Get a fontconfig pattern suitable for looking up the font as
specified with fontconfig's fc-match utility.
This support does not depend on fontconfig; we are merely borrowing its pattern syntax for use here.
Return the name of the font family used for math text.
The default font is rcParams["mathtext.fontset"] (default: 'dejavusans').
Return the font stretch or width. Options are: 'ultra-condensed', 'extra-condensed', 'condensed', 'semi-condensed', 'normal', 'semi-expanded', 'expanded', 'extra-expanded', 'ultra-expanded'.
Get the font weight. Options are: A numeric value in the range 0-1000 or one of 'light', 'normal', 'regular', 'book', 'medium', 'roman', 'semibold', 'demibold', 'demi', 'bold', 'heavy', 'extra bold', 'black'
Change the font family. Can be either an alias (generic name
is CSS parlance), such as: 'serif', 'sans-serif', 'cursive',
'fantasy', or 'monospace', a real font name or a list of real
font names. Real font names are not supported when
rcParams["text.usetex"] (default: False) is True. Default: rcParams["font.family"] (default: ['sans-serif'])
Set the filename of the fontfile to use. In this case, all other properties will be ignored.
Set the properties by parsing a fontconfig pattern.
This support does not depend on fontconfig; we are merely borrowing its pattern syntax for use here.
Set the font family for text in math mode.
If not set explicitly, rcParams["mathtext.fontset"] (default: 'dejavusans') will be used.
The name of the font family.
Available font families are defined in the default matplotlibrc file.
See also
Change the font family. Can be either an alias (generic name
is CSS parlance), such as: 'serif', 'sans-serif', 'cursive',
'fantasy', or 'monospace', a real font name or a list of real
font names. Real font names are not supported when
rcParams["text.usetex"] (default: False) is True. Default: rcParams["font.family"] (default: ['sans-serif'])
Set the font size.
rcParams["font.size"] (default: 10.0)If a float, the font size in points. The string values denote sizes relative to the default font size.
Set the font style.
rcParams["font.style"] (default: 'normal')Set the font stretch or width.
rcParams["font.stretch"] (default: 'normal')If int, must be in the range 0-1000.
Set the font style.
rcParams["font.style"] (default: 'normal')Set the font variant.
rcParams["font.variant"] (default: 'normal')Set the font weight.
rcParams["font.weight"] (default: 'normal')If int, must be in the range 0-1000.
Extract information from an AFM font file.
The filename corresponding to font.
The AFM font file from which information will be extracted.
FontEntryThe extracted font properties.
Find fonts in a search path, system paths, or some other platform-specific method.
Search for fonts in these specified font paths. If no paths are given and the
MPL_IGNORE_SYSTEM_FONTS is not set, use a standard set of system
paths, as well as the list of fonts tracked by fontconfig if fontconfig is
installed and available.
If 'ttf', search for TrueType fonts; if 'afm', search for with AFM fonts.
A list of file paths with fonts of the given type.
Find the path to the font file most closely matching the given font properties.
FontPropertiesThe font properties to search for. This can be either a
FontProperties object or a string defining a
fontconfig patterns.
The extension of the font file:
'ttf': TrueType and OpenType fonts (.ttf, .ttc, .otf)
'afm': Adobe Font Metrics (.afm)
If given, only search this directory and its subdirectories.
If MPL_IGNORE_SYSTEM_FONTS is set, then this defaults to
Matplotlib's internal font directory.
If True, will fall back to the default font family (usually "DejaVu Sans" or "Helvetica") if the first lookup hard-fails.
Whether to rebuild the font cache and search again if the first match appears to point to a nonexisting font (i.e., the font cache contains outdated entries).
The filename of the best matching font.
Notes
This performs a nearest neighbor search. Each font is given a similarity score to the target font properties. The first font with the highest score is returned. If no matches below a certain threshold are found, the default font (usually DejaVu Sans) is returned.
The result is cached, so subsequent lookups don't have to perform the O(n) nearest neighbor search.
See the W3C Cascading Style Sheet, Level 1 documentation for a description of the font finding algorithm.
Get an ft2font.FT2Font object given a list of file paths.
Relative or absolute paths to the font files to be used.
If a single string, bytes, or os.PathLike, then it will be treated
as a list with that entry only.
If more than one filepath is passed, then the returned FT2Font object will fall back through the fonts, in the order given, to find a needed glyph.
Return a list of file extensions that are synonyms for the given file extension fileext.
[Deprecated] Return whether the given font is a Postscript Compact Font Format Font embedded in an OpenType wrapper. Used by the PostScript and PDF backends that cannot subset these fonts.
Notes
Deprecated since version 3.11.
Dump FontManager data as JSON to the file named filename.
See also
Notes
File paths that are children of the Matplotlib data path (typically, fonts shipped with Matplotlib) are stored relative to that data path (to remain valid across virtualenvs).
This function temporarily locks the output file to prevent multiple processes from overwriting one another's output.
Load a FontManager from the JSON file named filename.
See also
Return a list of all fonts matching any of the extensions, found recursively under the directory.
Extract information from a TrueType font file.
Return the user-specified font directory for Win32. This is looked up from the registry key
\\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Fonts
If the key is not found, %WINDIR%\Fonts will be returned.
The global instance of FontManager.
| Web Proxy Viewer | New URL | Original Page |