Skip to content

xyproto/burnfont

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

burnfont Build Go Report Card License GoDoc

This is a hand-crafted 6x6 pixel font, defined by code, originally created in 1997.

Here is a generated image with all available letters in this font:

letters

Here is the same image, but scaled up 4x:

scaled

The font is a bit nostalgic to me, and was used in my small DOS drawing program named Burn. The palette that came with Burn is available here. The GUI was drawn with 320x200 pixels, 256 indexed colors (mode 13h), and looked like this:

burn screenshot

The font definition looks like this:

case 'k':
    fontLine("***", x, y)
    fontLine("-**", x, y+1)
    fontLine("**-**", x+1, y+2)
    fontLine("****-", x+1, y+3)
    fontLine("-**-**", x, y+4)
    fontLine("*** **", x, y+5)

* is a 100% opaque pixel, while - is a 25% opaque one (mostly transparent).

Contents

This Go package has a slice Available that lists all available runes. There is also a Draw function that takes an *image.RGBA value, a rune, a position (x and y) and a color (r, g and b) and draws a letter at that position in the image.

  • The cmd/scaled example outputs an image where each "pixel" of the font is 4x4 pixels.
  • The cmd/letters example outputs an image where each pixel is a pixel.
  • The cmd/txt2png example can render text as a PNG image.

Generating an image

The scaled utility can be built and run like this:

cd cmd/scaled
go build
./scaled

General information

About

Hand-crafted 6x6 pixel font, defined by code

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages