blob: 1f85bc394cb73cf0307b282e7411dc9c70982631 (
plain)
1
2
3
4
5
6
|
#!/bin/bash
#
# Create CircledNumbers webfont by subsetting the circled numbers from NotoSansJP.
#
pyftsubset NotoSansJP-Regular.otf --verbose --output-file=CircledNumbers.woff2 --flavor=woff2 --unicodes=U+2776-277b,U+2460-2465 --xml
|