SVGFonts This library parses the Font file format SVG fonts which is in XML, so it easy to manipulate by hand. See http://www.w3.org/TR/SVG/fonts.html You can convert your favourite font (i.e. .ttf) into a .svg file with fontforge (the menu item under "Save All"). If a font converted on your own doesn't work, try the repair options, and if this still doens't work edit the file by hand or even cooler: help me with a patch to make this library more robust. Remember that a lot of fonts are not allowed to be distributed freely. usage: The main library file ReadFont.hs parses a .svg xml-file containing font data and returns the outline of the font as a polygon (a list of Float-pairs). Hole outlines in a letter are inserted in the outer outline. This enables an easy extrusion. But since extrusion is generally a handy operation it is only in the example and should be part of another graphics library. To use this library in your code look at the example which uses the functions read_font and get_glyph_polygon. example: Fonts.hs is an OpenGL program that uses .svg-files in src/Test to display a string you can navigate around the 3d string with w,a,s,d, + arrows