PHP的imagettftext() 函数本身不能直接实现文字描边效果,但您可以通过以下方法来实现这个效果:
以下是一个简单的示例代码:
<?php
header('Content-Type: image/png');
$font = 'arial.ttf'; // 字体文件路径
$text = 'Hello, World!'; // 要显示的文本
$fontSize = 20; // 文字大小
$color = imagecolorallocate($image, 0, 0, 0); // 文字颜色(黑色)
$backgroundColor = imagecolorallocate($image, 255, 255, 255); // 背景颜色(白色)
$borderWidth = 2; // 描边宽度
// 创建图像
$image = imagecreatetruecolor($textWidth, $textHeight);
imagefilledrectangle($image, 0, 0, $textWidth, $textHeight, $backgroundColor);
// 计算文本边界框
$bbox = imagettfbbox($fontSize, 0, $font, $text);
$textWidth = $bbox[4] - $bbox[0];
$textHeight = $bbox[5] - $bbox[1];
// 绘制原始文本
imagettftext($image, $fontSize, 0, ($textWidth - $textWidth / strlen($text)) / 2, ($textHeight - $fontSize) / 2, $color, $font, $text);
// 创建描边图像
$borderImage = imagecreatetruecolor($textWidth + 2 * $borderWidth, $textHeight + 2 * $borderWidth);
imagefilledrectangle($borderImage, 0, 0, $textWidth + 2 * $borderWidth, $textHeight + 2 * $borderWidth, $backgroundColor);
// 将原始文本复制到描边图像上
for ($i = 0; $i < strlen($text); $i++) {
$char = imagettfbbox($fontSize, 0, $font, $text[$i]);
imagecopy($borderImage, $image, $i * ($fontSize + $borderWidth), ($fontSize - $char[5]) / 2, $char[0], ($fontSize - $char[1]) / 2, $fontSize + $borderWidth);
}
// 绘制描边
$borderColor = imagecolorallocate($borderImage, 0, 0, 0);
imagefilledrectangle($borderImage, 0, 0, $textWidth + 2 * $borderWidth, $textHeight + 2 * $borderWidth, $borderColor);
// 保存图像
imagejpeg($borderImage);
imagedestroy($image);
imagedestroy($borderImage);
?>
这个示例代码将创建一个带有黑色描边的白色文本。您可以根据需要调整参数以更改文本、字体、颜色等。