|
5 | 5 | from pathlib import Path
|
6 | 6 |
|
7 | 7 | import click
|
| 8 | +from afdko.fdkutils import run_shell_command |
8 | 9 | from fontTools.misc.cliTools import makeOutputFileName
|
9 | 10 | from fontTools.ttLib import TTFont
|
10 | 11 | from pathvalidate import sanitize_filename, sanitize_filepath
|
@@ -357,6 +358,73 @@ def rebuild(
|
357 | 358 | font.close()
|
358 | 359 |
|
359 | 360 |
|
| 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 | + |
360 | 428 | @utils.command()
|
361 | 429 | @add_file_or_path_argument()
|
362 | 430 | @click.option("-major", type=click.IntRange(0, 999), help="Major version")
|
|
0 commit comments