Mac 101: Font Book


 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS Mac 101: Font Book
# 1  
Old 11-26-2008
Mac 101: Font Book

Your Mac comes with many preinstalled fonts, styles of type that your computer uses to display and print text. Use Font Book to sort and preview your font collections to find the right one to use for your project. Font Book allows you to easily take a peek at what all your installed fonts look like. Font Book also lets you install, search, organize, activate, and deactivate fonts too. When you open it, the interface displays a Collection column on the left that sorts fonts by category, a Font column in the middle that displays all fonts in the selected collection, and a preview pane on the right, which displays a sample of the characters in the selected font. Here are a few ways that you can use Font Book.

More from Apple OS X Support ...
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)