在 PHP 中,使用 GD 庫和 FreeType 支持,可以設(shè)置 imagettftext 的透明度
$font = 'path/to/your/font.ttf';
$fontSize = 20;
$fontColor = imagecolorallocatealpha($image, 255, 255, 255, 127); // 設(shè)置字體顏色和透明度(RGBA)
$width = 300;
$height = 200;
$image = imagecreatetruecolor($width, $height);
$text = 'Hello, World!';
$textWidth = imagettfbbox($fontSize, 0, $font, $text);
$textX = ($width - $textWidth[4]) / 2;
$textY = ($height - $textWidth[5]) / 2 + $fontSize;
imagettftext($image, $fontSize, 0, $textX, $textY, $fontColor, $font);
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
將以上代碼片段組合在一起,即可創(chuàng)建一個帶有透明度的 imagettftext 圖像。注意,透明度值的范圍是 0(完全透明)到 127(完全不透明)。