Skip to content

Commit 6e6549f

Browse files
authored
Merge pull request #193 from ftCLI/dev
Add file naming for variable fonts and get_axes method
2 parents 91e5d04 + 519e3f0 commit 6e6549f

File tree

5 files changed

+20
-7
lines changed

5 files changed

+20
-7
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.1.17
2+
current_version = 1.1.18
33
commit = True
44
tag = True
55

foundryToolsCLI/Lib/Font.py

+16
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
from fontTools.misc.psCharStrings import T2CharString
1010
from fontTools.misc.timeTools import timestampToString
1111
from fontTools.pens.statisticsPen import StatisticsPen
12+
from fontTools.ttLib.tables._f_v_a_r import Axis
1213
from fontTools.ttLib.ttFont import TTFont
1314

1415
from foundryToolsCLI.Lib.tables.OS_2 import TableOS2
@@ -623,6 +624,13 @@ def get_file_name(self, source) -> str:
623624
name.
624625
:return: A string representing the file name of the font.
625626
"""
627+
if self.is_variable:
628+
family_name = self.guess_family_name().replace(" ", "").strip()
629+
if self.is_italic:
630+
family_name += "-Italic"
631+
axes = self.get_axes()
632+
file_name = f"{family_name}[{','.join([axis.axisTag for axis in axes])}]"
633+
return file_name
626634

627635
if self.is_ttf:
628636
if source in (4, 5):
@@ -644,6 +652,14 @@ def get_file_name(self, source) -> str:
644652
else:
645653
return Path(self.reader.file.name).stem
646654

655+
def get_axes(self) -> list[Axis]:
656+
"""
657+
This function returns a list of axes in a variable font.
658+
"""
659+
if not self.is_variable:
660+
return []
661+
return [axis for axis in self["fvar"].axes if axis.flags == 0]
662+
647663
def fix_cff_top_dict_version(self) -> None:
648664
if not self.is_otf:
649665
return

foundryToolsCLI/Lib/VFont.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from pathlib import Path
22

3-
from fontTools.ttLib.tables._f_v_a_r import NamedInstance, Axis
3+
from fontTools.ttLib.tables._f_v_a_r import NamedInstance
44

55
from foundryToolsCLI.Lib.Font import Font
66

@@ -10,9 +10,6 @@ def __init__(self, file=None, recalcTimestamp=False):
1010
super().__init__(file=file, recalcTimestamp=recalcTimestamp)
1111
assert "fvar" in self
1212

13-
def get_axes(self) -> list[Axis]:
14-
return [axis for axis in self["fvar"].axes if axis.flags == 0]
15-
1613
def get_instances(self) -> list[NamedInstance]:
1714
return [instance for instance in self["fvar"].instances]
1815

foundryToolsCLI/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION = __version__ = "1.1.17"
1+
VERSION = __version__ = "1.1.18"
22

33
__all__ = ["VERSION"]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def _get_requirements():
1818

1919
setuptools.setup(
2020
name="foundrytools-cli",
21-
version="1.1.17",
21+
version="1.1.18",
2222
description="A set of command line tools to inspect, manipulate and convert font files",
2323
long_description=long_description,
2424
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)