var fDesc=new Array(); fDesc[0] = "Bitmap Font Builder is an application that makes it easy to create bitmaps for use in OpenGL and DirectX applications.
Main Features:

- Saves font texture in 8-bit TGA, 24-bit TGA, 32-bit TGA, RAW or BMP format
- Automatic font sizing
- Automatic texture sizing – pick your font sizes and the texture will automatically be resized to fit that font.
- Character justification settings
- Grid color adjust
- Option to save character widths to binary or INI file
- Option to save character ABC Widths to binary file
- Copy texture image to Windows’ clipboard"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }