PHP的imagettftext() 函數(shù)本身不能直接實(shí)現(xiàn)文字描邊效果,但您可以通過(guò)以下方法來(lái)實(shí)現(xiàn)這個(gè)效果:
以下是一個(gè)簡(jiǎn)單的示例代碼:
<?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; // 描邊寬度
// 創(chuàng)建圖像
$image = imagecreatetruecolor($textWidth, $textHeight);
imagefilledrectangle($image, 0, 0, $textWidth, $textHeight, $backgroundColor);
// 計(jì)算文本邊界框
$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);
// 創(chuàng)建描邊圖像
$borderImage = imagecreatetruecolor($textWidth + 2 * $borderWidth, $textHeight + 2 * $borderWidth);
imagefilledrectangle($borderImage, 0, 0, $textWidth + 2 * $borderWidth, $textHeight + 2 * $borderWidth, $backgroundColor);
// 將原始文本復(fù)制到描邊圖像上
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);
?>
這個(gè)示例代碼將創(chuàng)建一個(gè)帶有黑色描邊的白色文本。您可以根據(jù)需要調(diào)整參數(shù)以更改文本、字體、顏色等。