Font Industry 0.0.5 (Default branch)


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

ImageFont Industry (字型工业) makes big charset font creationeasier. The program converts a scanned in grid sheet, containing a lot of glyphs, into a bitmap font. The glyphs will be automatically indexed with Unicode.License: GNU General Public License v3Changes:
When export to a .sfd font, sane tags are now set for the font. Ascend/descend was changed to 880/120 and LineGap of 200 was added. Four standard glyphs were added to the beginning of a font. An image list pan was added for mass importing glyph sheets. Minor bugs were fixed.Image

More...
Login or Register to Ask a Question

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

imagefontwidth - Get font width

SYNOPSIS
int imagefontwidth (int $font) DESCRIPTION
Returns the pixel width of a character in 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 width of the font. EXAMPLES
Example #1 Using imagefontwidth(3) on built-in fonts <?php echo 'Font width: ' . imagefontwidth(4); ?> The above example will output something similar to: Font width: 8 Example #2 Using imagefontwidth(3) together with imageloadfont(3) <?php // Load a .gdf font $font = imageloadfont('anonymous.gdf'); echo 'Font width: ' . imagefontwidth($font); ?> The above example will output something similar to: Font width: 23 SEE ALSO
imagefontheight(3), imageloadfont(3). PHP Documentation Group IMAGEFONTWIDTH(3)