要调整 PHP imagettftext 中的文字大小,您需要使用 imagettftext()
函数的第四个参数,即字体大小
<?php
// 创建图像
$width = 300;
$height = 200;
$image = imagecreatetruecolor($width, $height);
// 设置背景颜色
$backgroundColor = imagecolorallocate($image, 255, 255, 255);
imagefill($image, 0, 0, $backgroundColor);
// 加载字体文件
$fontFile = 'path/to/your/font.ttf'; // 请替换为您的字体文件路径
$fontSize = 20; // 设置字体大小
$fontColor = imagecolorallocate($image, 0, 0, 0); // 设置字体颜色
// 添加文本
$text = 'Hello, World!';
$textWidth = imagettfbbox($fontSize, 0, $fontFile, $text);
$textHeight = $fontSize;
$x = ($width - $textWidth[4]) / 2;
$y = ($height - $textHeight) / 2;
imagettftext($image, $fontSize, 0, $x, $y, $fontColor, $fontFile, $text);
// 输出图像
header('Content-Type: image/png');
imagepng($image);
// 销毁图像资源
imagedestroy($image);
?>
在这个示例中,我们首先创建了一个图像,然后设置了背景颜色。接下来,我们加载了字体文件并设置了字体大小、颜色。然后,我们使用 imagettftext()
函数在图像上添加了文本,并计算了文本的宽度和高度以使其居中。最后,我们输出了图像并销毁了图像资源。