matplotlib.type1font
¶This module contains a class representing a Type 1 font.
This version reads pfa and pfb files and splits them for embedding in pdf files. It also supports SlantFont and ExtendFont transformations, similarly to pdfTeX and friends. There is no support yet for subsetting.
Usage:
>>> font = Type1Font(filename)
>>> clear_part, encrypted_part, finale = font.parts
>>> slanted_font = font.transform({'slant': 0.167})
>>> extended_font = font.transform({'extend': 1.2})
Sources:
matplotlib.type1font.
Type1Font
(input)¶Bases: object
A class representing a Type-1 font, for use by backends.
parts
¶A 3-tuple of the cleartext part, the encrypted part, and the finale of zeros.
prop
¶A dictionary of font properties.
Initialize a Type-1 font. input can be either the file name of a pfb file or a 3-tuple of already-decoded Type-1 font parts.
parts
prop
transform
(effects)¶Transform the font by slanting or extending. effects should
be a dict where effects['slant']
is the tangent of the
angle that the font is to be slanted to the right (so negative
values slant to the left) and effects['extend']
is the
multiplier by which the font is to be extended (so values less
than 1.0 condense). Returns a new Type1Font
object.
matplotlib.type1font.
ord
(x)¶