試圖在php中已經存在的圖像上畫一些文字,但得到奇怪的結果。imagettftext給出奇怪的結果
下面是代碼:
<?php
$font = "files/fonts/open_sans/OpenSans-Regular-webfont.ttf";
$image = imagecreatefrompng('images/icons/marker_icon.png');
$white = ImageColorAllocate($image, 255,255,255);
imagettftext($image, 1, 1, 1, 1, $white, $font, $_GET['count']);
header("content-type: image/png");
imagepng($image);
imagedestroy($image);
?>
第一次在圖像上繪畫,所以我不知道我做錯了什麼。
你用什麼照片編輯器?我使用的是Photoshop,我試過這個,但它沒有工作。 –
油漆哈哈。也許它與photoshop使用的顏色有關。 – spencdev