1
我已經嘗試了幾次,但我似乎無法得到透明背景腓添加居中文本圖像
任何建議這個圖片文字底部的2線爲中心?
<?php
$filePath = "adopt.png"; //full path to your png, including filename and extension
$img = @imagecreatefrompng($filePath);
$width = imagesx($img);
$height = imagesy($img);
//create new image and fill with background color
$backgroundImg = @imagecreatetruecolor($width, $height);
imagecopy($backgroundImg, $img, 0, 0, 0, 0, 100, 130);
$color = imagecolorallocatealpha($backgroundImg, 0, 0, 0, 127); //fill transparent back
imagefill($backgroundImg, 0, 0, $color);
//save as png
header("Content-type: image/png");
imagepng($backgroundImg);
imagedestroy($backgroundImg);
?>
很高興看到您的嘗試代碼。 IT會澄清你想要做的事情。 –
試圖在底部添加兩行居中文本。 –
顯示我們已經嘗試過的代碼。 – billynoah