Click here to Skip to main content
Licence 
First Posted 3 Jan 2004
Views 35,057
Bookmarked 17 times

A class to parse graphical fonts

By | 3 Jan 2004 | Article
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

About the Author

Matthew Hazlett

Web Developer

United States United States

Member

I started programming for fun when I was about 10 on an Franklin Ace 1000.
 
I still do it just for fun but it has gotten me a few jobs over the years. More then I can say for my Microsoft Certifications. Smile | :)
 
The way I learned was by example, now its time to give back to the next generation of coders.
 



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralThere's a bug in getCell() Pinmembernobuyuki_nyuu15:50 29 Jan '07  
QuestionKerning? PinmemberJoel Holdsworth3:16 5 Jan '04  
AnswerRe: Kerning? Pinmemberdog_spawn4:28 5 Jan '04  
AnswerRe: Kerning? Pinmemberhazlema6:45 9 Jan '04  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 4 Jan 2004
Article Copyright 2004 by Matthew Hazlett
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid