imagettftext() 函数是 PHP 中的一个内置函数,用于使用 TrueType 字体将文本写入图像。
句法:
数组imagettftext(资源$image,float $size,float $angle,
int $x,int $y,int $color,string $fontfile,string $text)
参数:此函数接受上述八个参数,如下所述:
返回值:此函数在成功时返回一个数组。
下面的示例说明了PHP 中的imagettftext() 函数。
示例 1:
// Create an empty image
$im = imagecreatetruecolor(800, 250);
// Add text using a font from local file
$dataArr = imagettftext( $im , 0, 0, 10, 10,
imagecolorallocate( $im , 0, 150, 0),
'./Pacifico.ttf' , 'GeeksforGeeks' );
// Output to browser
print ( " . print_r( $dataArr , true) . "" );
?>
|
输出:
大批
(
[0] => 8
[1] => 12
[2] => 18
[3] => 12
[4] => 18
[5] => 7
[6] => 8
[7] => 7
)
示例 2:
// Create an empty image
$im = imagecreatetruecolor(800, 250);
// Add text using a font from local file
imagettftext( $im , 90, 0, 100, 100,
imagecolorallocate( $im , 0, 0, 255),
'./RugeBoogie-Regular.ttf' , 'GeeksforGeeks' );
// Output to browser
header( 'Content-Type: image/png' );
imagepng( $im );
imagedestroy( $im );
?>
|
输出:
参考: https ://www.php.net/manual/en/function.imagettftext.php