Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yeslogic/allsorts-tools
Various font tools built using Allsorts
https://github.com/yeslogic/allsorts-tools
allsorts cli font font-shaping fonts rust
Last synced: 5 days ago
JSON representation
Various font tools built using Allsorts
- Host: GitHub
- URL: https://github.com/yeslogic/allsorts-tools
- Owner: yeslogic
- License: apache-2.0
- Created: 2019-10-17T22:51:43.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-25T05:19:19.000Z (3 months ago)
- Last Synced: 2025-01-22T11:07:30.137Z (13 days ago)
- Topics: allsorts, cli, font, font-shaping, fonts, rust
- Language: Rust
- Homepage:
- Size: 372 KB
- Stars: 80
- Watchers: 19
- Forks: 12
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Allsorts Tools
[Allsorts](https://github.com/yeslogic/allsorts) is a font parser, shaping
engine, and subsetter for OpenType, WOFF, and WOFF2 written entirely in Rust.
This repository contains tools that were developed to debug and test Allsorts
and provide examples of its use.**Note:** These tools are for demonstration, reference, and debugging purposes.
You should not rely on them for production workflows.## Tools
Available tools:
* [`bitmaps`](#bitmaps) — dump bitmaps from bitmap fonts
* [`cmap`](#cmap) — print character to glyph mappings
* [`dump`](#dump) — dump font information
* [`has-table`](#has-table) — check if a font has a particular table
* [`instance`](#instance) — create a static instance of a font from a variable font
* [`layout-features`](#layout-features) — print a list of a font's GSUB and GPOS features
* [`shape`](#shape) — apply shaping to glyphs from a font
* [`specimen`](#specimen) — generate a HTML font speciment for a font
* [`subset`](#subset) — subset a font
* [`validate`](#validate) — parse the supplied font, reporting any failures
* [`variations`](#variations) — list the variation axes of a variable font
* [`view`](#view) — generate SVGs from glyphs### `bitmaps`
The `bitmaps` tool extracts bitmaps from fonts containing glyph bitmaps in
either the `EBLC`/`EBDT` or `CBLC`/`CBDT` tables.#### Options
* `-o` is the path to the directory to write the bitmaps to. It will be created
if it does not exist.#### Description
The images are written out as PNGs in a sub-directory for each strike (size).
The format is `{ppem_x}x{ppem_y}@{bit_depth}`, the files are named
`{glyph_id}.png`:terminus
├── 12x12@1
│ ├── 0.png
│ ├── 1.png
│ ├── 2.png
│ ├── 3.png
│ ├── 4.png
│ ├── 5.png
│ ├── 6.png
│ ├── 7.png
⋮ ⋮
├── 14x14@1
│ ├── 0.png
⋮ ⋮
└── 32x32@1
⋮ ⋮#### Example
allsorts bitmaps -o noto-color-emoji NotoColorEmoji.ttf
### `cmap`
The `cmap` tool chooses a preferred `cmap` sub-table and dumps the character to
glyph index entries. If the encoding of the table is Unicode then the characters
are printed along with the code point, otherwise just the numeric value of the
character is printed.#### Options
* `-f`, `--font` specifies the path to the font file.
* `-i`, `--index` is index of the font to dump (for TTC, WOFF2) (default: 0).#### Example
$ allsorts cmap --font profontn.otb
cmap sub-table encoding: Unicode
'' U+0000 -> 0
'' U+0001 -> 1
'' U+0002 -> 2
⋮
'?' U+003F -> 63
'@' U+0040 -> 64
'A' U+0041 -> 65
'B' U+0042 -> 66
⋮
'»' U+00BB -> 187
'¼' U+00BC -> 188
'½' U+00BD -> 189
'¾' U+00BE -> 190
'¿' U+00BF -> 191
'À' U+00C0 -> 192
'Á' U+00C1 -> 193
'Â' U+00C2 -> 194
'Ã' U+00C3 -> 195
'Ä' U+00C4 -> 196
⋮### `dump`
The `dump` tool prints or extracts information from a font file.
`allsorts dump path/to/font` prints out information about the font.
#### Options
* `--name` includes the metadata contained in the `name` table in the output.
* `-c` can be used to print information about a CFF font or table not
wrapped in a TrueType or OpenType container.
* `-t` extracts the named table from the supplied font. The output should be
redirected to a file. E.g. `allsorts dump -t glyf > glyf.bin`
* `-g` prints information about a specific glyph in a font.
* `-l` prints out all offsets in the `loca` table in the font.#### Example
$ allsorts dump noto-subset.otd | head
TTF
- version: 0x4f54544f
- num_tables: 9CFF (checksum: 0x625ba831, offset: 156, length: 166505)
OS/2 (checksum: 0x9f6306c8, offset: 166664, length: 96)
cmap (checksum: 0x131b2742, offset: 166760, length: 274)
head (checksum: 0x09e560e8, offset: 167036, length: 54)
hhea (checksum: 0x0c1109cf, offset: 167092, length: 36)
hmtx (checksum: 0x1b9b0310, offset: 167128, length: 52)
maxp (checksum: 0x000d5000, offset: 167180, length: 6)
name (checksum: 0x1f3037ad, offset: 167188, length: 418)
post (checksum: 0xff860032, offset: 167608, length: 32)- CFF:
- version: 1.0
- name: NotoSansJP-Regular
- num glyphs: 13
- charset: Custom
- variant: CID### `has-table`
The `has-table` tool checks if the supplied font file contains the table passed
via the `-t` argument. If the font contains the table it exits with status
success (0), if the font does not contain the table it exits with status 1.This tool is handy combined with `find`, to locate fonts that have the desired table.
#### Options
* `-t`, `--table TABLE` table to check for
* `-i`, `--index INDEX` index of the font to check (for TTC, WOFF2) (default: 0)
* `-p`, `--print-file` print the path to the font if it contains the table.
* `-v`, `--invert-match` select fonts that don't have the given table#### Example
In this example, we search the current directory for files ending in `ttf`,
`otf`, or `otc` and check to see if they contain an `EBLC` table. If the table
is found the path to the font is printed.find . -regextype posix-extended -type f -iregex '.*\.(ttf|otf|otc)$' -exec allsorts has-table -t EBLC -p {} \;
### `instance`
The `instance` tool applies a set of values (tuple) to the variation axes of a
variable font to produce a static, non-variable font with those settings.#### Options
* `-t`, `--tuple` is a comma separated list of values one for each variation axis
of the font. The `variations` tool will list the axes, their order, and limits.
* `-o`, `--output` is the path to the output font.#### Example
In this example the font has two axes: `UNDO` and `UNDS`. We supply a value of
500 for each one and write the output font to `UnderlineTest.ttf`.allsorts instance --tuple 500,500 UnderlineTest-VF.ttf -o UnderlineTest.ttf
### `layout-features`
Prints an indented list of a font's GSUB and GPOS features.
#### Example
$ layout-features fonts/devanagari/AnnapurnaSIL-Regular.ttf
Table: GSUB
Script: DFLT
Language: default
Feature: aalt
Lookups: 56
Feature: abvs
Lookups: 27,28,29,30
Feature: akhn
Lookups: 4
Feature: blwf
Lookups: 9
# additional output omitted### `shape`
The `shape` tool shapes the supplied text according to the supplied font, language, and
script. It prints out the glyphs before and after shaping.#### Options
* `-f`, `--font PATH` path to font file
* `-i`, `--index INDEX` index of the font to shape (for TTC, WOFF2) (default: 0)
* `-s`, `--script SCRIPT` script to shape
* `-l`, `--lang LANG` language to shape
* `--vertical` vertical layout, default is horizontal#### Example
$ shape -f fonts/devanagari/AnnapurnaSIL-Regular.ttf -s deva -l HIN 'शब्दों और वाक्यों की तरह'
# output omitted### `specimen`
The `specimen` tool generates a HTML font specimen sheet containing sample text
set in the font as well as information about the font and its supported features.#### Options
* `-i`, `--index INDEX` index of the font to subset (for TTC, WOFF2) (default: 0)
* `--sample-text TEXT` sample text to use in the font specimen#### Example
$ allsorts specimen ../allsorts/tests/fonts/bengali/Lohit-Bengali.ttf
### `subset`
The `subset` tool takes a source font and some text and writes a new version of
the source font only containing the glyphs required for the supplied text.#### Options
* `-t`, `--text TEXT` subset the font to include glyphs from TEXT
* `-a`, `--all` include all glyphs in the subset font
* `-i`, `--index INDEX` index of the font to subset (for TTC, WOFF2) (default: 0)#### Example
$ allsorts subset -t 'This a subsetting test' NotoSansJP-Regular.otf noto-subset.otf
Number of glyphs in new font: 13### `validate`
The `validate` tool attempts to parse all the glyphs (or various DICTs in the
case of CFF) in the supplied font. It reports any errors encountered but is
otherwise silent. This command was useful for bulk testing Allsorts against a
large repertoire of real world fonts.#### Example
$ allsorts validate ../allsorts/tests/fonts/bengali/Lohit-Bengali.ttf
#### Bulk Validation Example
$ fd '\.(ttf|otf|ttc)$' /usr/share/fonts | sort | parallel --bar allsorts validate {}
### `variations`
The `variations` tool lists information about a variable font. The information
includes:- The variation axes with their tag, minimum, maximum, and default values.
- Any pre-defined instances and their name and axis values.#### Example
This example prints variation information for the font at
`../text-rendering-tests/fonts/TestHVARTwo.ttf`.$ allsorts variations ../text-rendering-tests/fonts/TestHVARTwo.ttf
Axes: (2)- wght = min: 0, max: 1000, default: 0
- cntr = min: 0, max: 100, default: 0Instances:
Subfamily: ExtraLight
PostScript Name: TestFont-ExtraLight
Coordinates: [0.0, 0.0]Subfamily: Light
PostScript Name: TestFont-Light
Coordinates: [150.0, 0.0]Subfamily: Regular
PostScript Name: TestFont-Regular
Coordinates: [394.0, 0.0]Subfamily: Semibold
PostScript Name: TestFont-Semibold
Coordinates: [600.0, 0.0]Subfamily: Bold
PostScript Name: TestFont-Bold
Coordinates: [824.0, 0.0]Subfamily: Black
PostScript Name: TestFont-Black
Coordinates: [1000.0, 0.0]Subfamily: Black Medium Contrast
PostScript Name: TestFont-BlackMediumContrast
Coordinates: [1000.0, 50.0]Subfamily: Black High Contrast
PostScript Name: TestFont-BlackHighContrast
Coordinates: [1000.0, 100.0]### `view`
The `view` tool shapes the supplied text or list of codepoints according to the
supplied font, language, and script. Then, it generates an SVG of the glyphs.#### Options
* `-f`, `--font PATH` path to font file
* `-s`, `--script SCRIPT` script to shape
* `-l`, `--lang LANG` language to shape
* `--mark-origin` mark the origin of each glyph with a cross-hair
* `--margin num` or `top,right,bottom,left` specify a margin to be added to the edge of the SVG
* `--fg-colour rrggbbaa` set the fill colour of the glyphs
* `--bg-colour rrggbbaa` set the background colour of the generated SVG
* `--fg-color rrggbbaa` alias for `--fg-colour`
* `--bg-color rrggbbaa` alias for `--bg-colour`
* `-t`, `--text TEXT` text to render
* `-c`, `--codepoints CODEPOINTS` comma-separated list of codepoints (as hexadecimal numbers) to render
* `-i`, `--indices GLYPH_INDICES` comma-separated list of glyph indices to render
* `-F`, `--features FEATURES` comma-separated list of OpenType features to enable (note: only enables these features)#### Example Using Text
$ view -f fonts/devanagari/NotoSerifDevanagari-Regular.ttf -s deva -t 'खि'
# output omitted#### Example Using Codepoints
$ allsorts view -f fonts/devanagari/NotoSerifDevanagari-Regular.ttf -s deva -c '916,93f'
# output omitted#### Example Using Glyph Indices (and Features)
In this example, the OpenType `pres` feature is enabled, which allows glyph 30
to be replaced by its special presentation form (glyph 547).$ view -f fonts/devanagari/NotoSerifDevanagari-Regular.ttf -s deva --features pres -i '30,54'
# output omitted## Building and Installing
### From Source
**Minimum Supported Rust Version:** 1.70.0
To build the tools ensure you have [Rust installed](https://www.rust-lang.org/tools/install).
* Build: `cargo build --release`
* Install: `cargo install --path .`### Arch Linux
There is an [AUR package for `allsorts-tools`](https://aur.archlinux.org/packages/allsorts-tools/):
git clone https://aur.archlinux.org/allsorts-tools.git
cd allsorts-tools
makepkg -si## Contributing
Contributions are welcome, please refer to the
[Allsorts contributing guide](https://github.com/yeslogic/allsorts/blob/master/CONTRIBUTING.md)
for more details.## Code of Conduct
We aim to uphold the Rust community standards:
> We are committed to providing a friendly, safe and welcoming environment for
> all, regardless of gender, sexual orientation, disability, ethnicity,
> religion, or similar personal characteristic.We follow the [Rust code of conduct](https://www.rust-lang.org/policies/code-of-conduct).
## License
Allsorts and these tools are distributed under the terms of the Apache License
(Version 2.0).See [LICENSE](LICENSE) for details.