Skip to content

Commit 18741fa

Browse files
authored
Merge pull request #184 from ftCLI/remove-unreachable-glyphs
Add `remove_unreachable_glyphs` command to CLI
2 parents 1935ea4 + 1a01096 commit 18741fa

File tree

4 files changed

+71
-3
lines changed

4 files changed

+71
-3
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.16
2+
current_version = 1.1.17
33
commit = True
44
tag = True
55

foundryToolsCLI/CLI/ftcli_utils.py

+68
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from pathlib import Path
66

77
import click
8+
from afdko.fdkutils import run_shell_command
89
from fontTools.misc.cliTools import makeOutputFileName
910
from fontTools.ttLib import TTFont
1011
from pathvalidate import sanitize_filename, sanitize_filepath
@@ -357,6 +358,73 @@ def rebuild(
357358
font.close()
358359

359360

361+
@utils.command()
362+
@add_file_or_path_argument()
363+
@add_recursive_option()
364+
@add_common_options()
365+
@Timer(logger=logger.info)
366+
def remove_unreachable_glyphs(
367+
input_path: Path,
368+
recursive: bool = False,
369+
output_dir: t.Optional[Path] = None,
370+
recalc_timestamp: bool = False,
371+
overwrite: bool = True,
372+
):
373+
"""
374+
Subsets a font file by removing unreachable glyphs.
375+
"""
376+
377+
fonts = get_fonts_in_path(
378+
input_path=input_path, recursive=recursive, recalc_timestamp=recalc_timestamp
379+
)
380+
if not initial_check_pass(fonts=fonts, output_dir=output_dir):
381+
return
382+
383+
for font in fonts:
384+
try:
385+
in_file = Path(font.reader.file.name)
386+
out_file = Path(makeOutputFileName(in_file, outputDir=output_dir, overWrite=overwrite))
387+
logger.opt(colors=True).info(Logs.current_file, file=in_file)
388+
389+
command = [
390+
"fonttools",
391+
"subset",
392+
in_file,
393+
f"--output-file={out_file}",
394+
"--unicodes=*",
395+
"--notdef-glyph",
396+
"--notdef-outline",
397+
"--layout-features=*",
398+
"--layout-scripts=*",
399+
"--drop-tables=",
400+
"--passthrough-tables",
401+
"--legacy-kern",
402+
"--name-IDs=*",
403+
"--name-legacy",
404+
"--name-languages=*",
405+
"--glyph-names",
406+
"--legacy-cmap",
407+
"--symbol-cmap",
408+
"--recalc-bounds",
409+
"--recalc-average-width",
410+
"--recalc-max-context",
411+
]
412+
413+
if recalc_timestamp:
414+
command.append("--recalc-timestamp")
415+
else:
416+
command.append("--no-recalc-timestamp")
417+
418+
run_shell_command(command)
419+
420+
logger.success(Logs.file_saved, file=out_file)
421+
422+
except Exception as e:
423+
logger.exception(e)
424+
finally:
425+
font.close()
426+
427+
360428
@utils.command()
361429
@add_file_or_path_argument()
362430
@click.option("-major", type=click.IntRange(0, 999), help="Major version")

foundryToolsCLI/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION = __version__ = "1.1.16"
1+
VERSION = __version__ = "1.1.17"
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.16",
21+
version="1.1.17",
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)