array imagettftext ( resource $image , float $size , float $angle , int $x , int $y , int $color , string $fontfile , string $text )
Write text to the image using TrueType fonts
Writes the given text into the image using TrueType fonts.
<?php
// Set the enviroment variable for GD
putenv('GDFONTPATH=' . realpath('.'));
// Name the font to be used (note the lack of the .ttf extension)
$font = 'SomeFont';
?>
5.2.0 It is now possible to specify an hexadecimal entity in text.
0 Comment:
Post a Comment