我使用GD庫,我試圖添加一個HTML圖像使用PHP回聲。gd庫 - 圖像上的文本作爲回聲與html
<?php
$image = imagecreatefrompng("grafika.png");
$black = imageColorAllocate($image, 255, 255, 255);
$font = 'arial.ttf';
$text = 4;
if($text == 4) {
echo '<div style="background-color: yellow; width: 100px; height: 100px;">some text here</div>';
}
imagettftext($image, 16, 0, 50, 100, $black, $font, $text);
header("Content-type: image/png");
imagepng($image);
?>
我在做什麼錯? 有沒有不同的方式來做到這一點?