Skip to content

Instantly share code, notes, and snippets.

@solarsailer
Last active August 29, 2015 14:13
Show Gist options
  • Save solarsailer/0aa2e9cac4b390a66ceb to your computer and use it in GitHub Desktop.
Save solarsailer/0aa2e9cac4b390a66ceb to your computer and use it in GitHub Desktop.
Convert a font to a bitmap sprite.
#!/usr/bin/env bash
# Example:
# $ convert -background none -fill white -font font.ttf -pointsize 8 label:"CHARSET" bitmap.png
CHARSET='!"#$&'\''()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~'
convert -background none -fill white -font 04B03.ttf -pointsize 8 label:"$CHARSET" bitmap.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment