Slant a font in PHP
Description
The following code shows how to slant a font.
Example
<?php//from ww w . j a v a 2 s. com
// Load a .pfb font file
$font = imagepsloadfont('./px3l.pfb');
// Slant the font by 22.5
imagepsslantfont($font, 22.5);
// Do any operations with the font here
// Free the font from memory
imagepsfreefont($font);
?>