Font object
Font()
#
#
Syntax#
Examples#
ParametersName | R/O | Type | Default Value | Description |
---|---|---|---|---|
arg | Optional | string or file object | <empty> | File path as a string, or file object, or leave it empty |
#
Return valueFont object
#
DescriptionInitialize a Font object. Load the BDF font file if a file path string or a file object is present.
.headers
#
#
Syntax#
Examples#
Typedictionary (string as keys, integer or string as values)
#
DescriptionThis attribute of a Font object represents the header information which is typically all the information before the STARTPROPERTIES
line in the font file.
Font header's names (keys), value types, and their descriptions in the BDF spec:
'bdfversion'
: (float) seeSTARTFONT
'fontname'
: (string) seeFONT
'pointsize'
: (integer) seeSIZE
'xres'
: (integer) seeSIZE
'yres'
: (integer) seeSIZE
'fbbx'
: (integer) seeFONTBOUNDINGBOX
'fbby'
: (integer) seeFONTBOUNDINGBOX
'fbbxoff'
: (integer) seeFONTBOUNDINGBOX
'fbbyoff'
: (integer) seeFONTBOUNDINGBOX
'swx0'
: (integer) see Metrics keywords, see alsoSWIDTH
at glyph-level'swy0'
: (integer) see Metrics keywords, see alsoSWIDTH
at glyph-level'dwx0'
: (integer) see Metrics keywords, see alsoDWIDTH
at glyph-level'dwy0'
: (integer) see Metrics keywords, see alsoDWIDTH
at glyph-level'swx1'
: (integer) see Metrics keywords, see alsoSWIDTH1
at glyph-level'swy1'
: (integer) see Metrics keywords, see alsoSWIDTH1
at glyph-level'dwx1'
: (integer) see Metrics keywords, see alsoDWIDTH1
at glyph-level'dwy1'
: (integer) see Metrics keywords, see alsoDWIDTH1
at glyph-level'vvectorx'
: (integer) see Metrics keywords, see alsoVVECTOR
at glyph-level'vvectory'
: (integer) see Metrics keywords, see alsoVVECTOR
at glyph-level'metricsset'
: (integer) seeMETRICSSET
'contentversion'
: (integer) seeCONTENTVERSION
'comment'
: (list of strings) seeCOMMENT
note
Headers are to be distinguished from properties (props) which are inside the block between STARTPROPERTIES
and ENDPROPERTIES
lines in the font file.
Header names are defined in the spec, property names are not.
.props
#
#
Syntax#
Examples#
Typedictionary (string as keys, integer or string as values)
#
DescriptionThis attribute of a Font object represents the property infomation which is inside the block between STARTPROPERTIES
and ENDPROPERTIES
lines.
note
Properties (props) are to be distinguished from headers which are typically all the information before the STARTPROPERTIES
line in the font file.
.glyphs
#
#
Syntax#
Typedictionary (integer as keys, list as values)
#
DescriptionThis attribute of a Font object represents the raw glyph data in the font.
note
As raw data with values without their keys, you usually should not use it directly. Use other API methods instead, such as .glyph() and .iterglyphs().
.load_file_path()
#
#
Syntax#
ParametersName | R/O | Type | Default Value | Description |
---|---|---|---|---|
file_path | Required | string | N/A | Path of the BDF font file to load |
#
Return valueThe Font object itself, with font loaded
#
DescriptionLoad the BDF font file in the file path.
Font(file_path)
is equivalent to Font().load_file_path(file_path)
.
.load_file_obj()
#
#
Syntax#
ParametersName | R/O | Type | Default Value | Description |
---|---|---|---|---|
file_obj | Required | file object | N/A | file object of the BDF font file to load |
#
Return valueThe Font object itself, with font loaded
#
DescriptionLoad the BDF font file object.
Font(file_object)
is equivalent to Font().load_file_obj(file_object)
.
.length()
#
#
Syntax#
Examples#
ParametersNo parameters
#
Return value(integer) Actual glyph count in the font
#
DescriptionThe method always returns how many glyphs actually exist in the font. This could be different with the glyph count number next to the 'CHARS' keyword, if so, there would be a warning when the font is loaded.
font_obj.length()
is equivalent to len(font_obj)
.
.iterglyphs()
#
#
Syntax#
Examples#
ParametersName | R/O | Type | Default Value | Description |
---|---|---|---|---|
order | Optional | integer | 1 | -1 : reverse order in the BDF font file0 : order in the BDF font file1 : ascending codepoint order2 : descending codepoint order |
r | Optional | See below | None | Codepoint range, see below |
The codepoint range parameter r
accepts:
None
(default): all the glyphs in the font- integer. Examples:
128
(Basic Latin / ASCII)0x100
(Basic Latin and Latin-1 Supplement / cp1250 / cp1251 / cp1252)
- tuple of two integers. Examples:
(0, 127)
(same as128
)(0, 0xff)
(same as0x100
)(48, 57)
(all numbers 0-9)(65, 90)
(all uppercase basic latin letters A-Z)(97, 122)
(all lowercase basic latin letters a-z)(1328, 0x1032F)
- list of tuples of two integers. Example:
[(65, 90), (97, 122)]
(all basic latin letters A-Za-z)[(0x2E80, 0x9FFF), (0xA960, 0xA97F), (0xAC00, 0xD7FF), (0xF900, 0xFAFF), (0xFE30, 0xFE4F), (0xFF00, 0xFFEF), (0x20000, 0x3134F)]
(this is roughly all CJK characters in the Unicode)
See also Wikipedia article "Unicode block"
#
Return value(iterator of Glyph objects/None
) An iterator of glyphs as Glyph objects. Missing glyphs are replaced by None
#
DescriptionThis method returns an iterator of all the glyphs (as Glyph objects) in the font (default) or in the specified codepoint range in the font, sorted by the specified order (or by the ascending codepoint order by default).
.itercps()
#
#
Syntax#
Examples#
ParametersSee .iterglyphs()
's "Parameters" section
#
Return value(iterator of integers) An iterator of the codepoints of glyphs
#
DescriptionThis method is almost identical to .iterglyphs()
, except it returns an iterator of glyph codepoints instead of an iterator of Glyph objects.
.glyph()
#
#
Syntax#
Examples#
ParametersName | R/O | Type | Default Value | Description |
---|---|---|---|---|
character | Required | string | N/A | Character (a one-character string) of the glyph you need |
#
Return value- Glyph object
None
if the glyph does not exist in the font
#
DescriptionGet a glyph (as Glyph object) by its character.
.glyphbycp()
#
#
Syntax#
Examples#
ParametersName | R/O | Type | Default Value | Description |
---|---|---|---|---|
codepoint | Required | integer | N/A | Codepoint of the glyph you need |
#
Return value- Glyph object
None
if the glyph does not exist in the font
#
DescriptionGet a glyph (as Glyph object) by its codepoint.
.lacksglyphs()
#
#
Syntax#
Examples#
ParametersName | R/O | Type | Default Value | Description |
---|---|---|---|---|
string | Required | string | N/A | string (one or more characters) |
#
Return value- (list of strings) list of missing glyph(s)' characters
None
if all the glyphs in your string exist in the font
#
DescriptionCheck if there is any missing glyph and gets these glyphs' character.
.draw()
#
#
Syntax#
Examples#
ParametersName | R/O | Type | Default Value | Description |
---|---|---|---|---|
string | Required | string | N/A | The words, the setences, the paragraphs you want to draw |
linelimit | Optional | integer | 512 | Maximum pixels per line (row) |
mode | Optional | integer | 1 | 0 : uses ffb, glyphs will be fixed-width (monospace) and -height1 : uses dwidth horizontally, dwidth1 vertically |
direction | Optional | string | 'lrtb' | Writing direction. See below |
usecurrentglyphspacing | Optional | boolean | False | Useful when direction='rl' . For example, font.draw('açš„', direction='rl') will misplace the wider "çš„" on the narrower "U" because normally we use the previous glyph's spacing (dwidth). You can use font.draw('açš„', direction='rl', usecurrentglyphspacing=True) to use the current one and solve the problem |
missing | Optional | dictionary or Glyph object | An empty glyph with glyphname 'empty' , codepoint 8203 , hexdata [] and metrics all 0 | The missing glyphs will be replaced by this one. It can be a dictionary of glyph meta information, or a Glyph object |
direction
:
'lrtb'
or'lr'
: left to right, lines from top to bottom (most common direction)'lrbt'
: left to right, lines from bottom to top'rltb'
or'rl'
: right to left, lines from top to bottom (Arabic, Hebrew, Persian, Urdu)'rlbt'
: right to left, lines from bottom to top'tbrl'
or'tb'
: top to bottom, lines from right to left (Chinese traditionally)'tblr'
: top to bottom, lines from left to right'btrl'
or'bt'
: bottom to top, lines from right to left'btlr'
: bottom to top, lines from left to right
#
Return valueBitmap object
#
DescriptionDraw (render) the glyphs of the specified words / setences / paragraphs (as a string), to a Bitmap object.
note
See the missing
parameter if you need to handle potentially missing glyphs.
.drawcps()
#
#
Syntax#
Examples#
ParametersName | R/O | Type | Default Value | Description |
---|---|---|---|---|
cps | Required | iterable of integers | N/A | iterable (list, generator or any other iterable) of codepoints |
For the rest of the parameters (linelimit
, mode
, direction
and usecurrentglyphspacing
), see .draw()
's "Parameters" section
#
Return valueBitmap object
#
DescriptionDraw the glyphs of the specified codepoints, to a Bitmap object.
This method is almost identical to .draw()
, except in the first parameter, it uses iterable of codepoints instead of string
.drawall()
#
#
Syntax#
Examples#
ParametersFor parameters order
and r
, see .iterglyphs()
's "Parameters" section
For the rest of the parameters (linelimit
, mode
, direction
and usecurrentglyphspacing
), see .draw()
's "Parameters" section
Those parameters have the same names, meanings, optional-ness (they are all optional), types and default values as the ones in .iterglyphs()
and .draw()
, except one thing: mode
is 0
by default (mode=0
: the glyphs will have the same width and height)
#
Return valueBitmap object
#
DescriptionDraw all the glyphs in the font (default) or in the specified codepoint range in the font, sorted by the specified order (or by the ascending codepoint order by default), to a Bitmap object.
This method is like a combined version of .iterglyphs()
/.itercps()
and .draw()
/.drawcps()
.
note
Read the section for Bitmap's .tobytes() to know how to output your bitmap to BMP / PNG / JPEG files.