PHP | imagettftext()函数
imagettftext()函数是PHP中的一个内置函数,用于使用 TrueType 字体将文本写入图像。
句法:
array imagettftext( resource $image, float $size, float $angle,
int $x, int $y, int $color, string $fontfile, string $text)
参数:此函数接受上述八个参数,如下所述:
- $image:它指定要处理的图像。
- $size:它指定要使用的字体大小,以磅为单位。
- $angle:它以度为单位指定角度。
- $x:指定 x 坐标。
- $y:它指定 y 坐标。
- $color:它指定文本所需颜色的索引。
- $fontfile:它指定要使用的字体。
- $text:它指定要写入的文本。
返回值:此函数在成功时返回一个数组。
下面的示例说明了PHP中的imagettftext()函数。
示例 1:
" . print_r($dataArr, true) . "
");
?>
输出:
Array
(
[0] => 8
[1] => 12
[2] => 18
[3] => 12
[4] => 18
[5] => 7
[6] => 8
[7] => 7
)
示例 2:
输出:
参考: https://www. PHP.net/manual/en/函数.imagettftext。 PHP