Need Help understanding TrueType Fonts

  • Thread starter Thread starter Jim Flanagan
  • Start date Start date
J

Jim Flanagan

Hi...
I want to write a small app/tool in vb.net that will allow me to read
in a font file, interpret the data and create a file that could be used
in an led sign system. i.e. convert the font data into a dot matrix
format. I seem to be having problems finding some reasonable
information on the internet as to how interpret the font files and
extract the data. I could use some pointers on how to go about doing
this. Any help would be appreciated..

Thanks..
Jim
(e-mail address removed)
 
Jim Flanagan said:
I want to write a small app/tool in vb.net that will allow me to read in a
font file, interpret the data and create a file that could be used in an
led sign system. i.e. convert the font data into a dot matrix format. I
seem to be having problems finding some reasonable information on the
internet as to how interpret the font files and extract the data. I could
use some pointers on how to go about doing this.

I think it's much simpler to draw the text onto a 'Bitmap' object at runtime
in the desired font and then loop through the pixels of the bitmap
('GetPixel') to check which LEDs should be turned on.
 
Herfried said:
I think it's much simpler to draw the text onto a 'Bitmap' object at
runtime in the desired font and then loop through the pixels of the
bitmap ('GetPixel') to check which LEDs should be turned on.
Thanks... However, what I am after is an effecient way to create a set
of LED fonts which could be imbedded into some firmware that I am
writing. As opposed to individually creating each char/num etc and
writing a code module with this information for compiling/linking, I
wanted to pick a font and then have this module written for subsequent
use. Maybe I could still use your approach to do what I want, however...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top