sign-language-processing / signwriting

Utilities for SignWriting
MIT License
6 stars 1 forks source link

Can I get Bitmap Fonts? #3

Closed bipinkrish closed 6 months ago

bipinkrish commented 7 months ago

I want these font files https://github.com/sign-language-processing/signwriting/tree/main/signwriting/visualizer in Bitmap type [FNT].

I tried https://ttf2fnt.com but it seems not working.

bipinkrish commented 7 months ago

I need it for its dart implementation https://github.com/bipinkrish/signwriting

AmitMY commented 7 months ago

Seems like TTF files are supported in Dart https://docs.flutter.dev/cookbook/design/fonts The SignWriting fonts library is this one - https://github.com/sutton-signwriting/font-ttf You might be able to re-pack the font from the original glyphs, but I have no idea about that personally.

bipinkrish commented 7 months ago

Seems like TTF files are supported in Dart https://docs.flutter.dev/cookbook/design/fonts

That is for using the font for the UI with flutter SDK, for my need i should be able to load it with dart SDK.

bipinkrish commented 7 months ago

The SignWriting fonts library is this one - https://github.com/sutton-signwriting/font-ttf You might be able to re-pack the font from the original glyphs, but I have no idea about that personally.

I will check it out. Thanks.