python-fontbro


Namepython-fontbro JSON
Version 0.21.0 PyPI version JSON
download
home_page
Summaryfriendly font operations on top of fontTools.
upload_time2024-03-07 00:52:07
maintainer
docs_urlNone
author
requires_python
licenseMIT License Copyright (c) 2021-present Fabio Caccamo Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords font fonttools languages opentype otf python scripts slicing subset subsetting ttf unicode utility variable variations woff woff2 wrapper writing-systems
VCS
bugtrack_url
requirements fonttools imagehash opentype-sanitizer pillow python-fsutil
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![](https://img.shields.io/pypi/pyversions/python-fontbro.svg?color=blue&logo=python&logoColor=white)](https://www.python.org/)
[![](https://img.shields.io/pypi/v/python-fontbro.svg?color=blue&logo=pypi&logoColor=white)](https://pypi.org/project/python-fontbro/)
[![](https://static.pepy.tech/badge/python-fontbro/month)](https://pepy.tech/project/python-fontbro)
[![](https://img.shields.io/github/stars/fabiocaccamo/python-fontbro?logo=github&style=flat)](https://github.com/fabiocaccamo/python-fontbro/stargazers)
[![](https://img.shields.io/pypi/l/python-fontbro?color=blue)](https://github.com/fabiocaccamo/python-fontbro/blob/main/LICENSE.txt)

[![](https://results.pre-commit.ci/badge/github/fabiocaccamo/python-fontbro/main.svg)](https://results.pre-commit.ci/latest/github/fabiocaccamo/python-fontbro/main)
[![](https://img.shields.io/github/actions/workflow/status/fabiocaccamo/python-fontbro/test-package.yml?branch=main&label=build&logo=github)](https://github.com/fabiocaccamo/python-fontbro)
[![](https://img.shields.io/codecov/c/gh/fabiocaccamo/python-fontbro?logo=codecov)](https://codecov.io/gh/fabiocaccamo/python-fontbro)
[![](https://img.shields.io/codacy/grade/dd3a046db4b14b988a2f1fcfbfaa51eb?logo=codacy)](https://www.codacy.com/app/fabiocaccamo/python-fontbro)
[![](https://img.shields.io/codeclimate/maintainability/fabiocaccamo/python-fontbro?logo=code-climate)](https://codeclimate.com/github/fabiocaccamo/python-fontbro/)
[![](https://img.shields.io/badge/code%20style-black-000000.svg?logo=python&logoColor=black)](https://github.com/psf/black)
[![](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)

# python-fontbro
friendly font operations on top of `fontTools`. :billed_cap:

## Installation
```bash
pip install python-fontbro
```

## Usage
Just import the font class:

```python
from fontbro import Font

font = Font("fonts/MyFont.ttf")

# or you can use any file-like object:
with open("fonts/MyFont.ttf") as fh:
    font = Font(fh)
```

### Methods
-   [`clone`](#clone)
-   [`close`](#close)
-   [`from_collection`](#from_collection)
-   [`get_characters`](#get_characters)
-   [`get_characters_count`](#get_characters_count)
-   [`get_family_name`](#get_family_name)
-   [`get_features`](#get_features)
-   [`get_features_tags`](#get_features_tags)
-   [`get_filename`](#get_filename)
-   [`get_fingerprint`](#get_fingerprint)
-   [`get_fingerprint_match`](#get_fingerprint_match)
-   [`get_format`](#get_format)
-   [`get_glyphs`](#get_glyphs)
-   [`get_glyphs_count`](#get_glyphs_count)
-   [`get_image`](#get_image)
-   [`get_italic_angle`](#get_italic_angle)
-   [`get_name`](#get_name)
-   [`get_names`](#get_names)
-   [`get_style_flag`](#get_style_flag)
-   [`get_style_flags`](#get_style_flags)
-   [`get_style_name`](#get_style_name)
-   [`get_ttfont`](#get_ttfont)
-   [`get_unicode_block_by_name`](#get_unicode_block_by_name)
-   [`get_unicode_blocks`](#get_unicode_blocks)
-   [`get_unicode_script_by_name`](#get_unicode_script_by_name)
-   [`get_unicode_scripts`](#get_unicode_scripts)
-   [`get_variable_axes`](#get_variable_axes)
-   [`get_variable_axes_tags`](#get_variable_axes_tags)
-   [`get_variable_axis_by_tag`](#get_variable_axis_by_tag)
-   [`get_variable_instances`](#get_variable_instances)
-   [`get_variable_instance_by_style_name`](#get_variable_instance_by_style_name)
-   [`get_variable_instance_closest_to_coordinates`](#get_variable_instance_closest_to_coordinates)
-   [`get_version`](#get_version)
-   [`get_vertical_metrics`](#get_vertical_metrics)
-   [`get_weight`](#get_weight)
-   [`get_width`](#get_width)
-   [`is_static`](#is_static)
-   [`is_variable`](#is_variable)
-   [`rename`](#rename)
-   [`sanitize`](#sanitize)
-   [`save`](#save)
-   [`save_as_woff`](#save_as_woff)
-   [`save_as_woff2`](#save_as_woff2)
-   [`save_to_file_object`](#save_to_file_object)
-   [`save_variable_instances`](#save_variable_instances)
-   [`set_family_name`](#set_family_name)
-   [`set_name`](#set_name)
-   [`set_names`](#set_names)
-   [`set_style_flag`](#set_style_flag)
-   [`set_style_flags`](#set_style_flags)
-   [`set_style_flags_by_subfamily_name`](#set_style_flags_by_subfamily_name)
-   [`set_style_name`](#set_style_name)
-   [`set_vertical_metrics`](#set_vertical_metrics)
-   [`subset`](#subset)
-   [`to_sliced_variable`](#to_sliced_variable)
-   [`to_static`](#to_static)

#### `clone`
```python
"""
Creates a new Font instance reading the same binary file.
"""
font_clone = font.clone()
```

#### `close`
```python
"""
Close the wrapped TTFont instance.
"""
font.close()
```

#### `from_collection`
```python
"""
Gets a list of Font objects from a font collection file (.ttc / .otc)

:param filepath: The filepath
:type filepath: str or pathlib.Path

:returns: A list of Font objects.
:rtype: list
"""
fonts = Font.from_collection(filepath="my-font-collection.ttc")
```

#### `get_characters`
```python
"""
Gets the font characters.

:param ignore_blank: If True, characters without contours will not be returned.
:type ignore_blank: bool

:returns: The characters.
:rtype: generator of dicts

:raises TypeError: If it's not possible to find the 'best' unicode cmap dict in the font.
"""
chars = font.get_characters(ignore_blank=False)
```

#### `get_characters_count`
```python
"""
Gets the font characters count.

:param ignore_blank: If True, characters without contours will not be counted.
:type ignore_blank: bool

:returns: The characters count.
:rtype: int
"""
chars_count = font.get_characters_count(ignore_blank=False)
```

#### `get_family_name`
```python
"""
Gets the family name reading the name records with priority order (16, 21, 1).

:returns: The font family name.
:rtype: str
"""
family_name = font.get_family_name()
```

#### `get_features`
```python
"""
Gets the font opentype features.

:returns: The features.
:rtype: list of dict
"""
features = font.get_features()
```

#### `get_features_tags`
```python
"""
Gets the font opentype features tags.

:returns: The features tags list.
:rtype: list of str
"""
features_tags = font.get_features_tags()
```

#### `get_filename`
```python
"""
Gets the filename to use for saving the font to file-system.

:param variable_suffix: The variable suffix, default "Variable"
:type variable_suffix: str
:param variable_axes_tags: The variable axes tags flag,
    if True, the axes tags will be appended, eg '[wght,wdth]'
:type variable_axes_tags: bool
:param variable_axes_values: The variable axes values flag
    if True, each axis values will be appended, eg '[wght(100,100,900),wdth(75,100,125)]'
:type variable_axes_values: bool

:returns: The filename.
:rtype: str
"""
filename = font.get_filename(variable_suffix="Variable", variable_axes_tags=True, variable_axes_values=False)
```

#### `get_fingerprint`
```python
"""
Gets the font fingerprint: an hash calculated from an image representation of the font.
Changing the text option affects the returned fingerprint.

:param text: The text used for generating the fingerprint, default value: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".
:type text: str
:returns: The fingerprint hash.
:rtype: imagehash.ImageHash
"""
hash = font.get_fingerprint()
```

#### `get_fingerprint_match`
```python
"""
Gets the fingerprint match between this font and another one.
by checking if their fingerprints are equal (difference <= tolerance).

:param other: The other font, can be either a filepath or a Font instance.
:type other: str or Font
:param tolerance: The diff tolerance, default 3.
:type tolerance: int
:param text: The text used for generating the fingerprint, default value: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".
:type text: str
:returns: A tuple containing the match info (match, diff, hash, other_hash).
:rtype: tuple
"""
match, diff, hash, other_hash = font.get_fingerprint_match(other="other_font.ttf", tolerance=10)
```

#### `get_format`
```python
"""
Gets the font format: otf, ttf, woff, woff2.

:param ignore_flavor: If True, the original format without compression will be returned.
:type ignore_flavor: bool

:returns: The format.
:rtype: str or None
"""
format = font.get_format(ignore_flavor=False)
```

#### `get_glyphs`
```python
"""
Gets the font glyphs and their own composition.

:returns: The glyphs.
:rtype: generator of dicts
"""
glyphs = font.get_glyphs()
```

#### `get_glyphs_count`
```python
"""
Gets the font glyphs count.

:returns: The glyphs count.
:rtype: int
"""
glyphs_count = font.get_glyphs_count()
```

#### `get_image`
```python
"""
Gets an image representation of the font rendering
some text using the given options.

:param text: The text rendered in the image
:type text: str
:param size: The font size
:type size: int
:param color: The text color
:type color: tuple
:param background_color: The background color
:type background_color: tuple
"""
img = font.get_image(text="Hello!", size=48, color=(0, 0, 0, 255), background_color=(255, 255, 255, 255))
```

#### `get_italic_angle`
```python
"""
Gets the font italic angle.

:returns: The angle value including backslant, italic and roman flags.
:rtype: dict or None
"""
italic_angle = font.get_italic_angle()
```

#### `get_name`
```python
"""
Gets the name by its identifier from the font name table.

:param key: The name id or key (eg. "family_name")
:type key: int or str

:returns: The name.
:rtype: str or None

:raises KeyError: if the key is not a valid name key/id
"""
family_name = font.get_name(key=Font.NAME_FAMILY_NAME)
```

#### `get_names`
```python
"""
Gets the names records mapped by their property name.

:returns: The names.
:rtype: dict
"""
names = font.get_names()
```

#### `get_style_flag`
```python
"""
Gets the style flag reading OS/2 and macStyle tables.

:param key: The key
:type key: string

:returns: The style flag.
:rtype: bool
"""
flag = font.get_style_flag(Font.STYLE_FLAG_BOLD)
```

#### `get_style_flags`
```python
"""
Gets the style flags reading OS/2 and macStyle tables.

:returns: The dict representing the style flags.
:rtype: dict
"""
flags = font.get_style_flags()
```

#### `get_style_name`
```python
"""
Gets the style name reading the name records with priority order (17, 22, 2).

:returns: The font style name.
:rtype: str
"""
style_name = font.get_style_name()
```

#### `get_ttfont`
```python
"""
Gets the wrapped TTFont instance.

:returns: The TTFont instance.
:rtype: TTFont
"""
ttfont = font.get_ttfont()
```

#### `get_unicode_block_by_name`
```python
"""
Gets the unicode block by name (name is case-insensitive and ignores "-").

:param name: The name
:type name: str

:returns: The unicode block dict if the name is valid, None otherwise.
:rtype: dict or None
"""
block = font.get_unicode_block_by_name(name="Basic Latin")
```

#### `get_unicode_blocks`
```python
"""
Gets the unicode blocks and their coverage.
Only blocks with coverage >= coverage_threshold (0.0 <= coverage_threshold <= 1.0) will be returned.

:param coverage_threshold: The minumum required coverage for a block to be returned.
:type coverage_threshold: float

:returns: The list of unicode blocks.
:rtype: list of dicts
"""
blocks = font.get_unicode_blocks(coverage_threshold=0.00001)
```

#### `get_unicode_script_by_name`
```python
"""
Gets the unicode script by name/tag (name/tag is case-insensitive and ignores "-").

:param name: The name
:type name: str

:returns: The unicode script dict if the name/tag is valid, None otherwise.
:rtype: dict or None
"""
script = font.get_unicode_script_by_name(name="Latn")
```

#### `get_unicode_scripts`
```python
"""
Gets the unicode scripts and their coverage.
Only scripts with coverage >= coverage_threshold (0.0 <= coverage_threshold <= 1.0) will be returned.

:param coverage_threshold: The minumum required coverage for a script to be returned.
:type coverage_threshold: float

:returns: The list of unicode scripts.
:rtype: list of dicts
"""
scripts = font.get_unicode_scripts(coverage_threshold=0.00001)
```

#### `get_variable_axes`
```python
"""
Gets the font variable axes.

:returns: The list of axes if the font is a variable font otherwise None.
:rtype: list of dict or None
"""
axes = font.get_variable_axes()
```

#### `get_variable_axes_tags`
```python
"""
Gets the variable axes tags.

:returns: The variable axis tags.
:rtype: list or None
"""
axes_tags = font.get_variable_axes_tags()
```

#### `get_variable_axis_by_tag`
```python
"""
Gets a variable axis by tag.

:param tag: The tag
:type tag: string

:returns: The variable axis by tag.
:rtype: dict or None
"""
axis = font.get_variable_axis_by_tag(tag="wght")
```

#### `get_variable_instances`
```python
"""
Gets the variable instances.

:returns: The list of instances if the font is a variable font otherwise None.
:rtype: list of dict or None
"""
instances = font.get_variable_instances()
```

#### `get_variable_instance_by_style_name`
```python
"""
Gets the variable instance by style name, eg. style_name = 'Bold'

:param style_name: The style name
:type style_name: str

:returns: The variable instance matching the given style name.
:rtype: dict or None
"""
instance = font.get_variable_instance_by_style_name(style_name="Bold")
```

#### `get_variable_instance_closest_to_coordinates`
```python
"""
Gets the variable instance closest to coordinates.
eg. coordinates = {"wght": 1000, "slnt": 815, "wdth": 775}
If coordinates do not specify some axes, axes default value is used for lookup.

:param coordinates: The coordinates
:type coordinates: dict

:returns: The variable instance closest to coordinates.
:rtype: dict or None
"""
instance = font.get_variable_instance_closest_to_coordinates(coordinates={"wght": 1000, "slnt": 815, "wdth": 775})
```

#### `get_version`
```python
"""
Gets the font version.

:returns: The font version value.
:rtype: float
"""
version = font.get_version()
```

#### `get_vertical_metrics`
```python
"""
Gets the font vertical metrics.

:returns: A dictionary containing the following vertical metrics:
    "units_per_em", "y_max", "y_min", "ascent", "descent", "line_gap",
    "typo_ascender", "typo_descender", "typo_line_gap", "cap_height", "x_height",
    "win_ascent", "win_descent"
:rtype: dict
"""
metrics = font.get_vertical_metrics()
```

#### `get_weight`
```python
"""
Gets the font weight value and name.

:returns: The weight name and value.
:rtype: dict or None
"""
weight = font.get_weight()
```

#### `get_width`
```python
"""
Gets the font width value and name.

:returns: The width name and value.
:rtype: dict or None
"""
width = font.get_width()
```

#### `is_static`
```python
"""
Determines if the font is a static font.

:returns: True if static font, False otherwise.
:rtype: bool
"""
static = font.is_static()
```

#### `is_variable`
```python
"""
Determines if the font is a variable font.

:returns: True if variable font, False otherwise.
:rtype: bool
"""
variable = font.is_variable()
```

#### `rename`
```python
"""
Renames the font names records (1, 2, 4, 6, 16, 17) according to
the given family_name and style_name (subfamily_name).

If family_name is not defined it will be auto-detected.
If style_name is not defined it will be auto-detected.

:param family_name: The family name
:type family_name: str
:param style_name: The style name
:type style_name: str
:param update_style_flags: if True the style flags will be updated by subfamily name
:type update_style_flags: bool

:raises ValueError: if the computed PostScript-name is longer than 63 characters.
"""
font.rename(family_name="My Font New", style_name="Bold Italic", update_style_flags=True)
```

#### `sanitize`
```python
"""
Sanitize the font file using OpenType Sanitizer.
https://github.com/googlefonts/ots-python

:param strict: If True (default), raises an exception even on sanitizer warnings.
    If False, only raises an exception on sanitizer failure (non-zero exit code).
:type strict: bool

:raises Exception: If the OpenType Sanitizer reports an error during the sanitization process.
:return: None

:note: Uses OpenType Sanitizer (ots) to sanitize the font file.
    Saves the font to a temporary directory and invokes the sanitizer on the saved file.
    If `strict` is True (default), treats sanitizer warnings as errors.
    If `strict` is False, only checks for sanitizer errors.
"""
font.sanitize(strict=True)
```

#### `save`
```python
"""
Saves the font at filepath.

:param filepath: The filepath, if None the source filepath will be used
:type filepath: str or None
:param overwrite: The overwrite, if True the source font file can be overwritten
:type overwrite: bool

:returns: The filepath where the font has been saved to.
:rtype: str

:raises ValueError: If the filepath is the same of the source font and overwrite is not allowed.
"""
saved_font_path = font.save(filepath=None, overwrite=False)
```

#### `save_as_woff`
```python
"""
Saves font as woff.

:param filepath: The filepath
:type filepath: str
:param overwrite: The overwrite, if True the source font file can be overwritten
:type overwrite: bool

:returns: The filepath where the font has been saved to.
:rtype: str
"""
saved_font_path = font.save_as_woff(filepath=None, overwrite=True)
```

#### `save_as_woff2`
```python
"""
Saves font as woff2.

:param filepath: The filepath
:type filepath: str
:param overwrite: The overwrite, if True the source font file can be overwritten
:type overwrite: bool

:returns: The filepath where the font has been saved to.
:rtype: str
"""
saved_font_path = font.save_as_woff2(filepath=None, overwrite=True)
```

#### `save_to_fileobject`
```python
"""
Writes the font to a file-like object. If no file-object is passed, an
instance of `BytesIO` is created for the user.
:param fileobject: A file-like object to write to.

:returns: The file object that was originally pass, or a new BytesIO
instance.
:rtype: typing.io.IO
"""

fileobject = font.save_to_fileobject(fileobject=None)
```

#### `save_variable_instances`
```python
"""
Save all instances of a variable font to specified directory in one or more format(s).

:param dirpath: The dirpath
:type dirpath: The directory path where the instances will be saved.
:param woff2: Whether to save instances also in WOFF2 format. Default is True.
:type woff2: bool
:param woff: Whether to save instances also in WOFF format. Default is True.
:type woff: bool
:param overwrite: Whether to overwrite existing files in the directory. Default is True.
:type overwrite: bool
:param options: Additional options to be passed to the instancer when generating static instances.
:type options: dictionary

:returns: A list containing dictionaries for each saved instance. Each dictionary
    includes 'instance' (containing instance metadata) and 'files' (a dictionary
    with file formats as keys and file-paths as values).

:raises TypeError: If the font is not a variable font.
"""

saved_fonts = font.save_variable_instances(dirpath, woff2=True, woff=True, overwrite=True, **options)
```

#### `set_family_name`
```python
"""
Sets the family name updating the related font names records.

:param name: The name
:type name: The new family name.
"""
font.set_family_name(name="My Font New")
```

#### `set_name`
```python
"""
Sets the name by its identifier in the font name table.

:param key: The name id or key (eg. "family_name")
:type key: int or str
:param value: The value
:type value: str
"""
font.set_name(Font.NAME_FAMILY_NAME, "Family Name Renamed")
```

#### `set_names`
```python
"""
Sets the names by their identifier in the name table.

:param names: The names
:type names: dict
"""
font.set_names(names={
    Font.NAME_FAMILY_NAME: "Family Name Renamed",
    Font.NAME_SUBFAMILY_NAME: "Regular Renamed",
})
```

#### `set_style_flag`
```python
"""
Sets the style flag.

:param key: The flag key
:type key: str
:param value: The value
:type value: bool
"""
font.set_style_flag(Font.STYLE_FLAG_BOLD, True)
```

#### `set_style_flags`
```python
"""
Sets the style flags, flags set to None will be ignored.

:param bold: The bold flag value.
:type bold: bool or None
:param italic: The italic flag value.
:type italic: bool or None
:param underline: The underline flag value.
:type underline: bool or None
:param outline: The outline flag value.
:type outline: bool or None
"""
font.set_style_flags(regular=None, bold=None, italic=None, outline=None, underline=None)
```

#### `set_style_flags_by_subfamily_name`
```python
"""
Sets the style flags by the subfamily name value.
The subfamily values should be "regular", "italic", "bold" or "bold italic"
to allow this method to work properly.
"""
font.set_style_flags_by_subfamily_name()
```

#### `set_style_name`
```python
"""
Sets the style name updating the related font names records.

:param name: The name
:type name: The new style name.
"""
font.set_style_name(name="Bold Italic")
```

#### `set_vertical_metrics`
```python
"""
Sets the vertical metrics.

:param metrics: Keyword arguments representing the vertical metrics that can be set:
    "units_per_em", "y_max", "y_min", "ascent", "descent", "line_gap",
    "typo_ascender", "typo_descender", "typo_line_gap", "cap_height", "x_height",
    "win_ascent", "win_descent"
"""
font.set_vertical_metrics(units_per_em=2000, y_max=2102, y_min=-533, ascent=1800, descent=-400, line_gap=0, typo_ascender=1800, typo_descender=-400, typo_line_gap=0, cap_height=1400, x_height=1080, win_ascent=2160, win_descent=540)
```

#### `subset`
```python
"""
Subsets the font using the given options (unicodes or glyphs or text),
it is possible to pass also subsetter options, more info here:
https://github.com/fonttools/fonttools/blob/main/Lib/fontTools/subset/__init__.py

:param unicodes: The unicodes
:type unicodes: str or list
:param glyphs: The glyphs
:type glyphs: list
:param text: The text
:type text: str
:param options: The subsetter options
:type options: dict
"""
font.subset(unicodes="", glyphs=[], text="", **options)
```

#### `to_sliced_variable`
```python
"""
Converts the variable font to a partial one slicing the variable axes at the given coordinates.
If an axis value is not specified, the axis will be left untouched.
If an axis min and max values are equal, the axis will be pinned.

:param coordinates: The coordinates dictionary, each item value must be tuple/list/dict
    (with 'min', 'default' and 'max' keys) for slicing or float/int for pinning, eg.
    {'wdth':100, 'wght':(100,600), 'ital':(30,65,70)} or
    {'wdth':100, 'wght':[100,600], 'ital':[30,65,70]} or
    {'wdth':100, 'wght':{'min':100,'max':600}, 'ital':{'min':30,'default':65,'max':70}}
:type coordinates: dict
:param options: The options for the fontTools.varLib.instancer
:type options: dictionary

:raises TypeError: If the font is not a variable font
:raises ValueError: If the coordinates are not defined (empty)
:raises ValueError: If the coordinates axes are all pinned
"""
font.to_sliced_variable(coordinates, **options)
```

#### `to_static`
```python
"""
Converts the variable font to a static one pinning
the variable axes at the given coordinates.
If an axis value is not specified, the axis will be pinned at its default value.
If coordinates are not specified each axis will be pinned at its default value.

:param coordinates: The coordinates, eg. {'wght':500, 'ital':50}
:type coordinates: dict or None
:param style_name: The existing instance style name, eg. 'Black'
:type style_name: str or None
:param update_names: if True the name records will be updated based on closest instance
:type update_names: bool
:param update_style_flags: if True the style flags will be updated based on closest instance
:type update_style_flags: bool

:param options: The options for the fontTools.varLib.instancer
:type options: dictionary

:raises TypeError: If the font is not a variable font
:raises ValueError: If the coordinates axes are not all pinned
"""
font.to_static(coordinates=None, style_name=None, update_names=True, update_style_flags=True, **options)
```

## Testing
```bash
# clone repository
git clone https://github.com/fabiocaccamo/python-fontbro.git && cd python-fontbro

# create virtualenv and activate it
python -m venv venv && . venv/bin/activate

# upgrade pip
python -m pip install --upgrade pip

# install requirements
python -m pip install -r requirements.txt -r requirements-test.txt

# install pre-commit to run formatters and linters
pre-commit install --install-hooks

# run tests using tox
tox

# or run tests using unittest
python -m unittest
```

## License
Released under [MIT License](LICENSE.txt).

## Credits
Special thanks to [Jérémie Hornus](https://github.com/JeremieHornus) and [Just Van Rossum](https://github.com/justvanrossum).

## Supporting
- :star: Star this project on [GitHub](https://github.com/fabiocaccamo/python-fontbro)
- :octocat: Follow me on [GitHub](https://github.com/fabiocaccamo)
- :blue_heart: Follow me on [Twitter](https://twitter.com/fabiocaccamo)
- :moneybag: Sponsor me on [Github](https://github.com/sponsors/fabiocaccamo)

## See also
- [`python-benedict`](https://github.com/fabiocaccamo/python-benedict) - dict subclass with keylist/keypath support, I/O shortcuts (base64, csv, json, pickle, plist, query-string, toml, xml, yaml) and many utilities. 📘
- [`python-fsutil`](https://github.com/fabiocaccamo/python-fsutil) - file-system utilities for lazy devs. 🧟‍♂️

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "python-fontbro",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "Fabio Caccamo <fabio.caccamo@gmail.com>",
    "keywords": "font,fonttools,languages,opentype,otf,python,scripts,slicing,subset,subsetting,ttf,unicode,utility,variable,variations,woff,woff2,wrapper,writing-systems",
    "author": "",
    "author_email": "Fabio Caccamo <fabio.caccamo@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/c9/cd/886c8dd6033b8b6d262558f3140c362f7cb3419a35a42b45cc130a759174/python-fontbro-0.21.0.tar.gz",
    "platform": null,
    "description": "[![](https://img.shields.io/pypi/pyversions/python-fontbro.svg?color=blue&logo=python&logoColor=white)](https://www.python.org/)\n[![](https://img.shields.io/pypi/v/python-fontbro.svg?color=blue&logo=pypi&logoColor=white)](https://pypi.org/project/python-fontbro/)\n[![](https://static.pepy.tech/badge/python-fontbro/month)](https://pepy.tech/project/python-fontbro)\n[![](https://img.shields.io/github/stars/fabiocaccamo/python-fontbro?logo=github&style=flat)](https://github.com/fabiocaccamo/python-fontbro/stargazers)\n[![](https://img.shields.io/pypi/l/python-fontbro?color=blue)](https://github.com/fabiocaccamo/python-fontbro/blob/main/LICENSE.txt)\n\n[![](https://results.pre-commit.ci/badge/github/fabiocaccamo/python-fontbro/main.svg)](https://results.pre-commit.ci/latest/github/fabiocaccamo/python-fontbro/main)\n[![](https://img.shields.io/github/actions/workflow/status/fabiocaccamo/python-fontbro/test-package.yml?branch=main&label=build&logo=github)](https://github.com/fabiocaccamo/python-fontbro)\n[![](https://img.shields.io/codecov/c/gh/fabiocaccamo/python-fontbro?logo=codecov)](https://codecov.io/gh/fabiocaccamo/python-fontbro)\n[![](https://img.shields.io/codacy/grade/dd3a046db4b14b988a2f1fcfbfaa51eb?logo=codacy)](https://www.codacy.com/app/fabiocaccamo/python-fontbro)\n[![](https://img.shields.io/codeclimate/maintainability/fabiocaccamo/python-fontbro?logo=code-climate)](https://codeclimate.com/github/fabiocaccamo/python-fontbro/)\n[![](https://img.shields.io/badge/code%20style-black-000000.svg?logo=python&logoColor=black)](https://github.com/psf/black)\n[![](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n\n# python-fontbro\nfriendly font operations on top of `fontTools`. :billed_cap:\n\n## Installation\n```bash\npip install python-fontbro\n```\n\n## Usage\nJust import the font class:\n\n```python\nfrom fontbro import Font\n\nfont = Font(\"fonts/MyFont.ttf\")\n\n# or you can use any file-like object:\nwith open(\"fonts/MyFont.ttf\") as fh:\n    font = Font(fh)\n```\n\n### Methods\n-   [`clone`](#clone)\n-   [`close`](#close)\n-   [`from_collection`](#from_collection)\n-   [`get_characters`](#get_characters)\n-   [`get_characters_count`](#get_characters_count)\n-   [`get_family_name`](#get_family_name)\n-   [`get_features`](#get_features)\n-   [`get_features_tags`](#get_features_tags)\n-   [`get_filename`](#get_filename)\n-   [`get_fingerprint`](#get_fingerprint)\n-   [`get_fingerprint_match`](#get_fingerprint_match)\n-   [`get_format`](#get_format)\n-   [`get_glyphs`](#get_glyphs)\n-   [`get_glyphs_count`](#get_glyphs_count)\n-   [`get_image`](#get_image)\n-   [`get_italic_angle`](#get_italic_angle)\n-   [`get_name`](#get_name)\n-   [`get_names`](#get_names)\n-   [`get_style_flag`](#get_style_flag)\n-   [`get_style_flags`](#get_style_flags)\n-   [`get_style_name`](#get_style_name)\n-   [`get_ttfont`](#get_ttfont)\n-   [`get_unicode_block_by_name`](#get_unicode_block_by_name)\n-   [`get_unicode_blocks`](#get_unicode_blocks)\n-   [`get_unicode_script_by_name`](#get_unicode_script_by_name)\n-   [`get_unicode_scripts`](#get_unicode_scripts)\n-   [`get_variable_axes`](#get_variable_axes)\n-   [`get_variable_axes_tags`](#get_variable_axes_tags)\n-   [`get_variable_axis_by_tag`](#get_variable_axis_by_tag)\n-   [`get_variable_instances`](#get_variable_instances)\n-   [`get_variable_instance_by_style_name`](#get_variable_instance_by_style_name)\n-   [`get_variable_instance_closest_to_coordinates`](#get_variable_instance_closest_to_coordinates)\n-   [`get_version`](#get_version)\n-   [`get_vertical_metrics`](#get_vertical_metrics)\n-   [`get_weight`](#get_weight)\n-   [`get_width`](#get_width)\n-   [`is_static`](#is_static)\n-   [`is_variable`](#is_variable)\n-   [`rename`](#rename)\n-   [`sanitize`](#sanitize)\n-   [`save`](#save)\n-   [`save_as_woff`](#save_as_woff)\n-   [`save_as_woff2`](#save_as_woff2)\n-   [`save_to_file_object`](#save_to_file_object)\n-   [`save_variable_instances`](#save_variable_instances)\n-   [`set_family_name`](#set_family_name)\n-   [`set_name`](#set_name)\n-   [`set_names`](#set_names)\n-   [`set_style_flag`](#set_style_flag)\n-   [`set_style_flags`](#set_style_flags)\n-   [`set_style_flags_by_subfamily_name`](#set_style_flags_by_subfamily_name)\n-   [`set_style_name`](#set_style_name)\n-   [`set_vertical_metrics`](#set_vertical_metrics)\n-   [`subset`](#subset)\n-   [`to_sliced_variable`](#to_sliced_variable)\n-   [`to_static`](#to_static)\n\n#### `clone`\n```python\n\"\"\"\nCreates a new Font instance reading the same binary file.\n\"\"\"\nfont_clone = font.clone()\n```\n\n#### `close`\n```python\n\"\"\"\nClose the wrapped TTFont instance.\n\"\"\"\nfont.close()\n```\n\n#### `from_collection`\n```python\n\"\"\"\nGets a list of Font objects from a font collection file (.ttc / .otc)\n\n:param filepath: The filepath\n:type filepath: str or pathlib.Path\n\n:returns: A list of Font objects.\n:rtype: list\n\"\"\"\nfonts = Font.from_collection(filepath=\"my-font-collection.ttc\")\n```\n\n#### `get_characters`\n```python\n\"\"\"\nGets the font characters.\n\n:param ignore_blank: If True, characters without contours will not be returned.\n:type ignore_blank: bool\n\n:returns: The characters.\n:rtype: generator of dicts\n\n:raises TypeError: If it's not possible to find the 'best' unicode cmap dict in the font.\n\"\"\"\nchars = font.get_characters(ignore_blank=False)\n```\n\n#### `get_characters_count`\n```python\n\"\"\"\nGets the font characters count.\n\n:param ignore_blank: If True, characters without contours will not be counted.\n:type ignore_blank: bool\n\n:returns: The characters count.\n:rtype: int\n\"\"\"\nchars_count = font.get_characters_count(ignore_blank=False)\n```\n\n#### `get_family_name`\n```python\n\"\"\"\nGets the family name reading the name records with priority order (16, 21, 1).\n\n:returns: The font family name.\n:rtype: str\n\"\"\"\nfamily_name = font.get_family_name()\n```\n\n#### `get_features`\n```python\n\"\"\"\nGets the font opentype features.\n\n:returns: The features.\n:rtype: list of dict\n\"\"\"\nfeatures = font.get_features()\n```\n\n#### `get_features_tags`\n```python\n\"\"\"\nGets the font opentype features tags.\n\n:returns: The features tags list.\n:rtype: list of str\n\"\"\"\nfeatures_tags = font.get_features_tags()\n```\n\n#### `get_filename`\n```python\n\"\"\"\nGets the filename to use for saving the font to file-system.\n\n:param variable_suffix: The variable suffix, default \"Variable\"\n:type variable_suffix: str\n:param variable_axes_tags: The variable axes tags flag,\n    if True, the axes tags will be appended, eg '[wght,wdth]'\n:type variable_axes_tags: bool\n:param variable_axes_values: The variable axes values flag\n    if True, each axis values will be appended, eg '[wght(100,100,900),wdth(75,100,125)]'\n:type variable_axes_values: bool\n\n:returns: The filename.\n:rtype: str\n\"\"\"\nfilename = font.get_filename(variable_suffix=\"Variable\", variable_axes_tags=True, variable_axes_values=False)\n```\n\n#### `get_fingerprint`\n```python\n\"\"\"\nGets the font fingerprint: an hash calculated from an image representation of the font.\nChanging the text option affects the returned fingerprint.\n\n:param text: The text used for generating the fingerprint, default value: \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\".\n:type text: str\n:returns: The fingerprint hash.\n:rtype: imagehash.ImageHash\n\"\"\"\nhash = font.get_fingerprint()\n```\n\n#### `get_fingerprint_match`\n```python\n\"\"\"\nGets the fingerprint match between this font and another one.\nby checking if their fingerprints are equal (difference <= tolerance).\n\n:param other: The other font, can be either a filepath or a Font instance.\n:type other: str or Font\n:param tolerance: The diff tolerance, default 3.\n:type tolerance: int\n:param text: The text used for generating the fingerprint, default value: \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\".\n:type text: str\n:returns: A tuple containing the match info (match, diff, hash, other_hash).\n:rtype: tuple\n\"\"\"\nmatch, diff, hash, other_hash = font.get_fingerprint_match(other=\"other_font.ttf\", tolerance=10)\n```\n\n#### `get_format`\n```python\n\"\"\"\nGets the font format: otf, ttf, woff, woff2.\n\n:param ignore_flavor: If True, the original format without compression will be returned.\n:type ignore_flavor: bool\n\n:returns: The format.\n:rtype: str or None\n\"\"\"\nformat = font.get_format(ignore_flavor=False)\n```\n\n#### `get_glyphs`\n```python\n\"\"\"\nGets the font glyphs and their own composition.\n\n:returns: The glyphs.\n:rtype: generator of dicts\n\"\"\"\nglyphs = font.get_glyphs()\n```\n\n#### `get_glyphs_count`\n```python\n\"\"\"\nGets the font glyphs count.\n\n:returns: The glyphs count.\n:rtype: int\n\"\"\"\nglyphs_count = font.get_glyphs_count()\n```\n\n#### `get_image`\n```python\n\"\"\"\nGets an image representation of the font rendering\nsome text using the given options.\n\n:param text: The text rendered in the image\n:type text: str\n:param size: The font size\n:type size: int\n:param color: The text color\n:type color: tuple\n:param background_color: The background color\n:type background_color: tuple\n\"\"\"\nimg = font.get_image(text=\"Hello!\", size=48, color=(0, 0, 0, 255), background_color=(255, 255, 255, 255))\n```\n\n#### `get_italic_angle`\n```python\n\"\"\"\nGets the font italic angle.\n\n:returns: The angle value including backslant, italic and roman flags.\n:rtype: dict or None\n\"\"\"\nitalic_angle = font.get_italic_angle()\n```\n\n#### `get_name`\n```python\n\"\"\"\nGets the name by its identifier from the font name table.\n\n:param key: The name id or key (eg. \"family_name\")\n:type key: int or str\n\n:returns: The name.\n:rtype: str or None\n\n:raises KeyError: if the key is not a valid name key/id\n\"\"\"\nfamily_name = font.get_name(key=Font.NAME_FAMILY_NAME)\n```\n\n#### `get_names`\n```python\n\"\"\"\nGets the names records mapped by their property name.\n\n:returns: The names.\n:rtype: dict\n\"\"\"\nnames = font.get_names()\n```\n\n#### `get_style_flag`\n```python\n\"\"\"\nGets the style flag reading OS/2 and macStyle tables.\n\n:param key: The key\n:type key: string\n\n:returns: The style flag.\n:rtype: bool\n\"\"\"\nflag = font.get_style_flag(Font.STYLE_FLAG_BOLD)\n```\n\n#### `get_style_flags`\n```python\n\"\"\"\nGets the style flags reading OS/2 and macStyle tables.\n\n:returns: The dict representing the style flags.\n:rtype: dict\n\"\"\"\nflags = font.get_style_flags()\n```\n\n#### `get_style_name`\n```python\n\"\"\"\nGets the style name reading the name records with priority order (17, 22, 2).\n\n:returns: The font style name.\n:rtype: str\n\"\"\"\nstyle_name = font.get_style_name()\n```\n\n#### `get_ttfont`\n```python\n\"\"\"\nGets the wrapped TTFont instance.\n\n:returns: The TTFont instance.\n:rtype: TTFont\n\"\"\"\nttfont = font.get_ttfont()\n```\n\n#### `get_unicode_block_by_name`\n```python\n\"\"\"\nGets the unicode block by name (name is case-insensitive and ignores \"-\").\n\n:param name: The name\n:type name: str\n\n:returns: The unicode block dict if the name is valid, None otherwise.\n:rtype: dict or None\n\"\"\"\nblock = font.get_unicode_block_by_name(name=\"Basic Latin\")\n```\n\n#### `get_unicode_blocks`\n```python\n\"\"\"\nGets the unicode blocks and their coverage.\nOnly blocks with coverage >= coverage_threshold (0.0 <= coverage_threshold <= 1.0) will be returned.\n\n:param coverage_threshold: The minumum required coverage for a block to be returned.\n:type coverage_threshold: float\n\n:returns: The list of unicode blocks.\n:rtype: list of dicts\n\"\"\"\nblocks = font.get_unicode_blocks(coverage_threshold=0.00001)\n```\n\n#### `get_unicode_script_by_name`\n```python\n\"\"\"\nGets the unicode script by name/tag (name/tag is case-insensitive and ignores \"-\").\n\n:param name: The name\n:type name: str\n\n:returns: The unicode script dict if the name/tag is valid, None otherwise.\n:rtype: dict or None\n\"\"\"\nscript = font.get_unicode_script_by_name(name=\"Latn\")\n```\n\n#### `get_unicode_scripts`\n```python\n\"\"\"\nGets the unicode scripts and their coverage.\nOnly scripts with coverage >= coverage_threshold (0.0 <= coverage_threshold <= 1.0) will be returned.\n\n:param coverage_threshold: The minumum required coverage for a script to be returned.\n:type coverage_threshold: float\n\n:returns: The list of unicode scripts.\n:rtype: list of dicts\n\"\"\"\nscripts = font.get_unicode_scripts(coverage_threshold=0.00001)\n```\n\n#### `get_variable_axes`\n```python\n\"\"\"\nGets the font variable axes.\n\n:returns: The list of axes if the font is a variable font otherwise None.\n:rtype: list of dict or None\n\"\"\"\naxes = font.get_variable_axes()\n```\n\n#### `get_variable_axes_tags`\n```python\n\"\"\"\nGets the variable axes tags.\n\n:returns: The variable axis tags.\n:rtype: list or None\n\"\"\"\naxes_tags = font.get_variable_axes_tags()\n```\n\n#### `get_variable_axis_by_tag`\n```python\n\"\"\"\nGets a variable axis by tag.\n\n:param tag: The tag\n:type tag: string\n\n:returns: The variable axis by tag.\n:rtype: dict or None\n\"\"\"\naxis = font.get_variable_axis_by_tag(tag=\"wght\")\n```\n\n#### `get_variable_instances`\n```python\n\"\"\"\nGets the variable instances.\n\n:returns: The list of instances if the font is a variable font otherwise None.\n:rtype: list of dict or None\n\"\"\"\ninstances = font.get_variable_instances()\n```\n\n#### `get_variable_instance_by_style_name`\n```python\n\"\"\"\nGets the variable instance by style name, eg. style_name = 'Bold'\n\n:param style_name: The style name\n:type style_name: str\n\n:returns: The variable instance matching the given style name.\n:rtype: dict or None\n\"\"\"\ninstance = font.get_variable_instance_by_style_name(style_name=\"Bold\")\n```\n\n#### `get_variable_instance_closest_to_coordinates`\n```python\n\"\"\"\nGets the variable instance closest to coordinates.\neg. coordinates = {\"wght\": 1000, \"slnt\": 815, \"wdth\": 775}\nIf coordinates do not specify some axes, axes default value is used for lookup.\n\n:param coordinates: The coordinates\n:type coordinates: dict\n\n:returns: The variable instance closest to coordinates.\n:rtype: dict or None\n\"\"\"\ninstance = font.get_variable_instance_closest_to_coordinates(coordinates={\"wght\": 1000, \"slnt\": 815, \"wdth\": 775})\n```\n\n#### `get_version`\n```python\n\"\"\"\nGets the font version.\n\n:returns: The font version value.\n:rtype: float\n\"\"\"\nversion = font.get_version()\n```\n\n#### `get_vertical_metrics`\n```python\n\"\"\"\nGets the font vertical metrics.\n\n:returns: A dictionary containing the following vertical metrics:\n    \"units_per_em\", \"y_max\", \"y_min\", \"ascent\", \"descent\", \"line_gap\",\n    \"typo_ascender\", \"typo_descender\", \"typo_line_gap\", \"cap_height\", \"x_height\",\n    \"win_ascent\", \"win_descent\"\n:rtype: dict\n\"\"\"\nmetrics = font.get_vertical_metrics()\n```\n\n#### `get_weight`\n```python\n\"\"\"\nGets the font weight value and name.\n\n:returns: The weight name and value.\n:rtype: dict or None\n\"\"\"\nweight = font.get_weight()\n```\n\n#### `get_width`\n```python\n\"\"\"\nGets the font width value and name.\n\n:returns: The width name and value.\n:rtype: dict or None\n\"\"\"\nwidth = font.get_width()\n```\n\n#### `is_static`\n```python\n\"\"\"\nDetermines if the font is a static font.\n\n:returns: True if static font, False otherwise.\n:rtype: bool\n\"\"\"\nstatic = font.is_static()\n```\n\n#### `is_variable`\n```python\n\"\"\"\nDetermines if the font is a variable font.\n\n:returns: True if variable font, False otherwise.\n:rtype: bool\n\"\"\"\nvariable = font.is_variable()\n```\n\n#### `rename`\n```python\n\"\"\"\nRenames the font names records (1, 2, 4, 6, 16, 17) according to\nthe given family_name and style_name (subfamily_name).\n\nIf family_name is not defined it will be auto-detected.\nIf style_name is not defined it will be auto-detected.\n\n:param family_name: The family name\n:type family_name: str\n:param style_name: The style name\n:type style_name: str\n:param update_style_flags: if True the style flags will be updated by subfamily name\n:type update_style_flags: bool\n\n:raises ValueError: if the computed PostScript-name is longer than 63 characters.\n\"\"\"\nfont.rename(family_name=\"My Font New\", style_name=\"Bold Italic\", update_style_flags=True)\n```\n\n#### `sanitize`\n```python\n\"\"\"\nSanitize the font file using OpenType Sanitizer.\nhttps://github.com/googlefonts/ots-python\n\n:param strict: If True (default), raises an exception even on sanitizer warnings.\n    If False, only raises an exception on sanitizer failure (non-zero exit code).\n:type strict: bool\n\n:raises Exception: If the OpenType Sanitizer reports an error during the sanitization process.\n:return: None\n\n:note: Uses OpenType Sanitizer (ots) to sanitize the font file.\n    Saves the font to a temporary directory and invokes the sanitizer on the saved file.\n    If `strict` is True (default), treats sanitizer warnings as errors.\n    If `strict` is False, only checks for sanitizer errors.\n\"\"\"\nfont.sanitize(strict=True)\n```\n\n#### `save`\n```python\n\"\"\"\nSaves the font at filepath.\n\n:param filepath: The filepath, if None the source filepath will be used\n:type filepath: str or None\n:param overwrite: The overwrite, if True the source font file can be overwritten\n:type overwrite: bool\n\n:returns: The filepath where the font has been saved to.\n:rtype: str\n\n:raises ValueError: If the filepath is the same of the source font and overwrite is not allowed.\n\"\"\"\nsaved_font_path = font.save(filepath=None, overwrite=False)\n```\n\n#### `save_as_woff`\n```python\n\"\"\"\nSaves font as woff.\n\n:param filepath: The filepath\n:type filepath: str\n:param overwrite: The overwrite, if True the source font file can be overwritten\n:type overwrite: bool\n\n:returns: The filepath where the font has been saved to.\n:rtype: str\n\"\"\"\nsaved_font_path = font.save_as_woff(filepath=None, overwrite=True)\n```\n\n#### `save_as_woff2`\n```python\n\"\"\"\nSaves font as woff2.\n\n:param filepath: The filepath\n:type filepath: str\n:param overwrite: The overwrite, if True the source font file can be overwritten\n:type overwrite: bool\n\n:returns: The filepath where the font has been saved to.\n:rtype: str\n\"\"\"\nsaved_font_path = font.save_as_woff2(filepath=None, overwrite=True)\n```\n\n#### `save_to_fileobject`\n```python\n\"\"\"\nWrites the font to a file-like object. If no file-object is passed, an\ninstance of `BytesIO` is created for the user.\n:param fileobject: A file-like object to write to.\n\n:returns: The file object that was originally pass, or a new BytesIO\ninstance.\n:rtype: typing.io.IO\n\"\"\"\n\nfileobject = font.save_to_fileobject(fileobject=None)\n```\n\n#### `save_variable_instances`\n```python\n\"\"\"\nSave all instances of a variable font to specified directory in one or more format(s).\n\n:param dirpath: The dirpath\n:type dirpath: The directory path where the instances will be saved.\n:param woff2: Whether to save instances also in WOFF2 format. Default is True.\n:type woff2: bool\n:param woff: Whether to save instances also in WOFF format. Default is True.\n:type woff: bool\n:param overwrite: Whether to overwrite existing files in the directory. Default is True.\n:type overwrite: bool\n:param options: Additional options to be passed to the instancer when generating static instances.\n:type options: dictionary\n\n:returns: A list containing dictionaries for each saved instance. Each dictionary\n    includes 'instance' (containing instance metadata) and 'files' (a dictionary\n    with file formats as keys and file-paths as values).\n\n:raises TypeError: If the font is not a variable font.\n\"\"\"\n\nsaved_fonts = font.save_variable_instances(dirpath, woff2=True, woff=True, overwrite=True, **options)\n```\n\n#### `set_family_name`\n```python\n\"\"\"\nSets the family name updating the related font names records.\n\n:param name: The name\n:type name: The new family name.\n\"\"\"\nfont.set_family_name(name=\"My Font New\")\n```\n\n#### `set_name`\n```python\n\"\"\"\nSets the name by its identifier in the font name table.\n\n:param key: The name id or key (eg. \"family_name\")\n:type key: int or str\n:param value: The value\n:type value: str\n\"\"\"\nfont.set_name(Font.NAME_FAMILY_NAME, \"Family Name Renamed\")\n```\n\n#### `set_names`\n```python\n\"\"\"\nSets the names by their identifier in the name table.\n\n:param names: The names\n:type names: dict\n\"\"\"\nfont.set_names(names={\n    Font.NAME_FAMILY_NAME: \"Family Name Renamed\",\n    Font.NAME_SUBFAMILY_NAME: \"Regular Renamed\",\n})\n```\n\n#### `set_style_flag`\n```python\n\"\"\"\nSets the style flag.\n\n:param key: The flag key\n:type key: str\n:param value: The value\n:type value: bool\n\"\"\"\nfont.set_style_flag(Font.STYLE_FLAG_BOLD, True)\n```\n\n#### `set_style_flags`\n```python\n\"\"\"\nSets the style flags, flags set to None will be ignored.\n\n:param bold: The bold flag value.\n:type bold: bool or None\n:param italic: The italic flag value.\n:type italic: bool or None\n:param underline: The underline flag value.\n:type underline: bool or None\n:param outline: The outline flag value.\n:type outline: bool or None\n\"\"\"\nfont.set_style_flags(regular=None, bold=None, italic=None, outline=None, underline=None)\n```\n\n#### `set_style_flags_by_subfamily_name`\n```python\n\"\"\"\nSets the style flags by the subfamily name value.\nThe subfamily values should be \"regular\", \"italic\", \"bold\" or \"bold italic\"\nto allow this method to work properly.\n\"\"\"\nfont.set_style_flags_by_subfamily_name()\n```\n\n#### `set_style_name`\n```python\n\"\"\"\nSets the style name updating the related font names records.\n\n:param name: The name\n:type name: The new style name.\n\"\"\"\nfont.set_style_name(name=\"Bold Italic\")\n```\n\n#### `set_vertical_metrics`\n```python\n\"\"\"\nSets the vertical metrics.\n\n:param metrics: Keyword arguments representing the vertical metrics that can be set:\n    \"units_per_em\", \"y_max\", \"y_min\", \"ascent\", \"descent\", \"line_gap\",\n    \"typo_ascender\", \"typo_descender\", \"typo_line_gap\", \"cap_height\", \"x_height\",\n    \"win_ascent\", \"win_descent\"\n\"\"\"\nfont.set_vertical_metrics(units_per_em=2000, y_max=2102, y_min=-533, ascent=1800, descent=-400, line_gap=0, typo_ascender=1800, typo_descender=-400, typo_line_gap=0, cap_height=1400, x_height=1080, win_ascent=2160, win_descent=540)\n```\n\n#### `subset`\n```python\n\"\"\"\nSubsets the font using the given options (unicodes or glyphs or text),\nit is possible to pass also subsetter options, more info here:\nhttps://github.com/fonttools/fonttools/blob/main/Lib/fontTools/subset/__init__.py\n\n:param unicodes: The unicodes\n:type unicodes: str or list\n:param glyphs: The glyphs\n:type glyphs: list\n:param text: The text\n:type text: str\n:param options: The subsetter options\n:type options: dict\n\"\"\"\nfont.subset(unicodes=\"\", glyphs=[], text=\"\", **options)\n```\n\n#### `to_sliced_variable`\n```python\n\"\"\"\nConverts the variable font to a partial one slicing the variable axes at the given coordinates.\nIf an axis value is not specified, the axis will be left untouched.\nIf an axis min and max values are equal, the axis will be pinned.\n\n:param coordinates: The coordinates dictionary, each item value must be tuple/list/dict\n    (with 'min', 'default' and 'max' keys) for slicing or float/int for pinning, eg.\n    {'wdth':100, 'wght':(100,600), 'ital':(30,65,70)} or\n    {'wdth':100, 'wght':[100,600], 'ital':[30,65,70]} or\n    {'wdth':100, 'wght':{'min':100,'max':600}, 'ital':{'min':30,'default':65,'max':70}}\n:type coordinates: dict\n:param options: The options for the fontTools.varLib.instancer\n:type options: dictionary\n\n:raises TypeError: If the font is not a variable font\n:raises ValueError: If the coordinates are not defined (empty)\n:raises ValueError: If the coordinates axes are all pinned\n\"\"\"\nfont.to_sliced_variable(coordinates, **options)\n```\n\n#### `to_static`\n```python\n\"\"\"\nConverts the variable font to a static one pinning\nthe variable axes at the given coordinates.\nIf an axis value is not specified, the axis will be pinned at its default value.\nIf coordinates are not specified each axis will be pinned at its default value.\n\n:param coordinates: The coordinates, eg. {'wght':500, 'ital':50}\n:type coordinates: dict or None\n:param style_name: The existing instance style name, eg. 'Black'\n:type style_name: str or None\n:param update_names: if True the name records will be updated based on closest instance\n:type update_names: bool\n:param update_style_flags: if True the style flags will be updated based on closest instance\n:type update_style_flags: bool\n\n:param options: The options for the fontTools.varLib.instancer\n:type options: dictionary\n\n:raises TypeError: If the font is not a variable font\n:raises ValueError: If the coordinates axes are not all pinned\n\"\"\"\nfont.to_static(coordinates=None, style_name=None, update_names=True, update_style_flags=True, **options)\n```\n\n## Testing\n```bash\n# clone repository\ngit clone https://github.com/fabiocaccamo/python-fontbro.git && cd python-fontbro\n\n# create virtualenv and activate it\npython -m venv venv && . venv/bin/activate\n\n# upgrade pip\npython -m pip install --upgrade pip\n\n# install requirements\npython -m pip install -r requirements.txt -r requirements-test.txt\n\n# install pre-commit to run formatters and linters\npre-commit install --install-hooks\n\n# run tests using tox\ntox\n\n# or run tests using unittest\npython -m unittest\n```\n\n## License\nReleased under [MIT License](LICENSE.txt).\n\n## Credits\nSpecial thanks to [J\u00e9r\u00e9mie Hornus](https://github.com/JeremieHornus) and [Just Van Rossum](https://github.com/justvanrossum).\n\n## Supporting\n- :star: Star this project on [GitHub](https://github.com/fabiocaccamo/python-fontbro)\n- :octocat: Follow me on [GitHub](https://github.com/fabiocaccamo)\n- :blue_heart: Follow me on [Twitter](https://twitter.com/fabiocaccamo)\n- :moneybag: Sponsor me on [Github](https://github.com/sponsors/fabiocaccamo)\n\n## See also\n- [`python-benedict`](https://github.com/fabiocaccamo/python-benedict) - dict subclass with keylist/keypath support, I/O shortcuts (base64, csv, json, pickle, plist, query-string, toml, xml, yaml) and many utilities. \ud83d\udcd8\n- [`python-fsutil`](https://github.com/fabiocaccamo/python-fsutil) - file-system utilities for lazy devs. \ud83e\udddf\u200d\u2642\ufe0f\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2021-present Fabio Caccamo  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "friendly font operations on top of fontTools.",
    "version": "0.21.0",
    "project_urls": {
        "Documentation": "https://github.com/fabiocaccamo/python-fontbro#readme",
        "Download": "https://github.com/fabiocaccamo/python-fontbro/releases",
        "Funding": "https://github.com/sponsors/fabiocaccamo/",
        "Homepage": "https://github.com/fabiocaccamo/python-fontbro",
        "Issues": "https://github.com/fabiocaccamo/python-fontbro/issues",
        "Twitter": "https://twitter.com/fabiocaccamo"
    },
    "split_keywords": [
        "font",
        "fonttools",
        "languages",
        "opentype",
        "otf",
        "python",
        "scripts",
        "slicing",
        "subset",
        "subsetting",
        "ttf",
        "unicode",
        "utility",
        "variable",
        "variations",
        "woff",
        "woff2",
        "wrapper",
        "writing-systems"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1134cd2522b29c6a9536a4f0cdef73c7b28cb43d183a2097b6961d0f0622500",
                "md5": "6d159d7bcc35ac8f615d645bfcbee9a4",
                "sha256": "e99f937246fd76754a78156c3cbf4d64380c7c83c0ffdefa6ae28c4e1ec7949f"
            },
            "downloads": -1,
            "filename": "python_fontbro-0.21.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6d159d7bcc35ac8f615d645bfcbee9a4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 35638,
            "upload_time": "2024-03-07T00:52:04",
            "upload_time_iso_8601": "2024-03-07T00:52:04.932630Z",
            "url": "https://files.pythonhosted.org/packages/b1/13/4cd2522b29c6a9536a4f0cdef73c7b28cb43d183a2097b6961d0f0622500/python_fontbro-0.21.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9cd886c8dd6033b8b6d262558f3140c362f7cb3419a35a42b45cc130a759174",
                "md5": "0e3519bfffc301a84559fd44d2c78ada",
                "sha256": "c3b4fe20b9472c1db0fb23cb5ebe335801476a3a4450cb7111805601d478981f"
            },
            "downloads": -1,
            "filename": "python-fontbro-0.21.0.tar.gz",
            "has_sig": false,
            "md5_digest": "0e3519bfffc301a84559fd44d2c78ada",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 52398,
            "upload_time": "2024-03-07T00:52:07",
            "upload_time_iso_8601": "2024-03-07T00:52:07.237677Z",
            "url": "https://files.pythonhosted.org/packages/c9/cd/886c8dd6033b8b6d262558f3140c362f7cb3419a35a42b45cc130a759174/python-fontbro-0.21.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-07 00:52:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fabiocaccamo",
    "github_project": "python-fontbro#readme",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "fonttools",
            "specs": [
                [
                    "==",
                    "4.49.0"
                ]
            ]
        },
        {
            "name": "imagehash",
            "specs": [
                [
                    "==",
                    "4.3.1"
                ]
            ]
        },
        {
            "name": "opentype-sanitizer",
            "specs": [
                [
                    "==",
                    "9.1.0"
                ]
            ]
        },
        {
            "name": "pillow",
            "specs": [
                [
                    "==",
                    "10.2.0"
                ]
            ]
        },
        {
            "name": "python-fsutil",
            "specs": [
                [
                    "==",
                    "0.13.1"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "python-fontbro"
}
        
Elapsed time: 0.20975s