diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-09-17 05:46:33 +0300 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2019-09-20 16:16:17 +0000 |
commit | f3a0009d3c3d40a67563e561b2167b9a703dfb1a (patch) | |
tree | 6c66091bb17460a644f520513376eeaec9ef1f53 /recipes-graphics/ttf-fonts/files/cleaner.py | |
parent | 9795294626b677a5331b97423d31bbab2bfc35aa (diff) |
ttf-dejavu: remove emoji glyphs from dejavu fonts
Derivate of DejaVu without characters listed as emoji, in order not
to override color fonts.
Ref: https://aur.archlinux.org/packages/ttf-dejavu-emojiless/
Bug-AGL: SPEC-2701
Change-Id: I6e01b62ff8e4051a4bb4db81b1a0b4f22a4cc4ec
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
(cherry picked from commit 3757aec8c8d76a19f8083cb4542a6553adf01f00)
Diffstat (limited to 'recipes-graphics/ttf-fonts/files/cleaner.py')
-rw-r--r-- | recipes-graphics/ttf-fonts/files/cleaner.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/recipes-graphics/ttf-fonts/files/cleaner.py b/recipes-graphics/ttf-fonts/files/cleaner.py new file mode 100644 index 000000000..9b9261339 --- /dev/null +++ b/recipes-graphics/ttf-fonts/files/cleaner.py @@ -0,0 +1,10 @@ +from json import load +from sys import argv + +ttf = fontforge.open(argv[1]) +for emoji in load(open('../../emoji.json')): + try: + ttf.removeGlyph(int(emoji['unified'], 16)) + except ValueError: + pass +ttf.generate(argv[1]) |