Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

A class to parse graphical fonts

0.00/5 (No votes)
3 Jan 2004 1  
How to use graphical fonts in your games

Sample Image - graphicFont_picture.gif

Introduction

Add graphical fonts to your applications and games. If the user who is using your game doesn't have the fonts needed, Windows tries to calculate the best match, but why? You can use graphical fonts.

A free font image builder is located here.

This is a VB.NET class that will parse those fonts and return a string (actually a bitmap representation or your string). It has other methods such as getCell but mostly what it will be used for is building strings.

Sample Font File (shrunk)

Sample screenshot

Initializing cGraphicFont

Here is how to create the object:

dim fntFromBmp = New cGraphicFont(Me, fontFile, Color.Black, 16, 16, " ")
  • The first parameter is a form object and should be left as me.
  • The second parameter is a bitmap object. This will be the bitmap of your font file.
  • The third parameter is background transparency of the bitmap.
  • The fourth and fifth parameters are the number of cells across and the number down.
  • The sixth parameter is the first letter in your font file.

Using cGraphicFont

dim fntFromBmp = New cGraphicFont(Me, fontFile, Color.Black, 16, 16, " ")
picturebox1.image = fntFromBmp.getString("CodeProject", Brushes.Transparent)
fntFromBmp.dispose()
  • getString's first parameter is the text you want to display.
  • getString's second parameter is the background of the resulting image.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here