glyphs2font
glyphs2font copied to clipboard
SVG Glyph Icons to Web Font Generation
In QML ttf can be inserted by `QFontDatabase::addApplicationFont("example-font.ttf");` but only accessed by code (e.g. "\ue002"). So if the following JS is generated ``` /* Icons for font example */ var...
``` @font-face { font-family: example; src: url(./example-font.woff); } div { font-family: example; } admin  ``` When I do this, `````` returns me the icon at that unicode but the...
I have a written a shell script to automate the conversion of strokes to paths in all SVG glyphs using inkscape CLI. You can find my full font development workflow...
Please support creating web fonts in the `woff2` format in addition to the `woff` format. There's a recednt Node.js module `wawoff2` (or an older `ttf2woff2`) available which seems to do...
Please support adding some metadata string (such as copyright and license) to the created fonts. It seems as if at least some web font formats support such metadata, if I'm...
Hello. Because you are using String.fromCharCode(), any Unicode code points above 0xffff are unusable. It is recommended to use String.fromCodePoint(). Please check out https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fromCharCode#Getting_it_to_work_with_higher_values Thanks for a great tool! I...
It would be nice if you could specify an HTML template. I'd like to display the icon bigger and next to each other with the css class under it. Also...