溫馨提示×

怎樣設(shè)置PHP imagettftext的透明度

PHP
小樊
81
2024-11-19 14:01:43
欄目: 編程語言

在 PHP 中,使用 GD 庫和 FreeType 支持,可以設(shè)置 imagettftext 的透明度

  1. 加載字體文件:
$font = 'path/to/your/font.ttf';
$fontSize = 20;
$fontColor = imagecolorallocatealpha($image, 255, 255, 255, 127); // 設(shè)置字體顏色和透明度(RGBA)
  1. 創(chuàng)建圖像:
$width = 300;
$height = 200;
$image = imagecreatetruecolor($width, $height);
  1. 使用 imagettftext() 函數(shù)添加文本,并設(shè)置透明度:
$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);
  1. 輸出圖像:
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);

將以上代碼片段組合在一起,即可創(chuàng)建一個帶有透明度的 imagettftext 圖像。注意,透明度值的范圍是 0(完全透明)到 127(完全不透明)。

0