Font Industry 0.0.9 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Font Industry 0.0.9 (Default branch)
# 1  
Old 10-12-2008
Font Industry 0.0.9 (Default branch)

Image Font Industry (字体工业) makes big charset font creation easier. The program converts a scanned in grid sheet, containing a lot of glyphs, into a bitmap font. The glyphs will be automatically indexed by Unicode or with a user-selected charset order. The bitmap font can then be converted to an outline font like TTF or OpenType font. License: GNU General Public License v3 Changes:
The zoom image function was added. The family name was updated to the sfd font. When setting a glyph from text, the selected text is tried first. The "Set End" button was moved to the toolbar. Miscellaneous bugs were fixed. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
IMAGEFONTHEIGHT(3)							 1							IMAGEFONTHEIGHT(3)

imagefontheight - Get font height

SYNOPSIS
int imagefontheight (int $font) DESCRIPTION
Returns the pixel height of a character in the specified font. PARAMETERS
o $ font -Can be 1, 2, 3, 4, 5 for built-in fonts in latin2 encoding (where higher numbers corresponding to larger fonts) or any of your own font identifiers registered with imageloadfont(3). RETURN VALUES
Returns the pixel height of the font. EXAMPLES
Example #1 Using imagefontheight(3) on built-in fonts <?php echo 'Font height: ' . imagefontheight(4); ?> The above example will output something similar to: Font height: 16 Example #2 Using imagefontheight(3) together with imageloadfont(3) <?php // Load a .gdf font $font = imageloadfont('anonymous.gdf'); echo 'Font height: ' . imagefontheight($font); ?> The above example will output something similar to: Font height: 43 SEE ALSO
imagefontwidth(3), imageloadfont(3). PHP Documentation Group IMAGEFONTHEIGHT(3)