diff options
author | Michal Wolny <michal.wolny@versum.pl> | 2021-01-08 15:00:00 +0100 |
---|---|---|
committer | Michal Wolny <michal.wolny@versum.pl> | 2021-01-08 15:00:00 +0100 |
commit | 2a24349fd32731d90e13877876f9fca804f99b8a (patch) | |
tree | 4d1127cd0eda592a14f08c57e4ff1c962de14dc6 /generate.py | |
parent | `lock-access` fix (diff) | |
download | tabler-icons-2a24349fd32731d90e13877876f9fca804f99b8a.tar.xz |
[dev-iconfont-generation] fix svg outline stroke directions during iconfont generation
Diffstat (limited to 'generate.py')
-rw-r--r-- | generate.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/generate.py b/generate.py new file mode 100644 index 00000000..d763ed16 --- /dev/null +++ b/generate.py @@ -0,0 +1,28 @@ +import os +import fontforge + +# svg2ttf library does not support fill-rule="evenodd" so after converting icons to outlineStroke we fix path directions to work with "nonzero" +# more: https://github.com/tabler/tabler-icons/issues/13 - thanks for awesome suggestions in the issue + + +print ("Running fontforge to fix svg outline directions!") + +def files(path): + for file in os.listdir(path): + if os.path.isfile(os.path.join(path, file)): + yield file + +# refer to https://fontforge.org/docs/scripting/python/fontforge.html for documentation +# inspiration from https://github.com/FontCustom/fontcustom/blob/master/lib/fontcustom/scripts/generate.py + +font = fontforge.font() +for file in files("./icons-outlined"): + print (f"Correcting outline for {file}") + glyph = font.createChar(123, file) + glyph.importOutlines("./icons-outlined/" + file) + glyph.correctDirection() + glyph.export("./icons-outlined/" + file) + glyph.clear() + + +print ("Finished fixing svg outline directions!") |