我使用的是創建圖像功能使用下面的代碼使用圖像創建功能
<?PHP
header ("Content-type: image/gif");
$image=imagecreatefromgif("myimage.gif"); // will be background img
$black = imagecolorallocate($image, 0,0,0);
$message = "Hello Egypt";
imagestring($image, 4, 25, 10, $message, $black);
imagegif($image);
imagedestroy($image);
?>
輸出應該是這樣的
我們創建一個確切的文本消息的圖像我的問題有沒有什麼辦法,我可以寫它的形象不僅文本 ,這樣,如果我已經標記圖像在相同的路徑(flag.gif
)我想只是我$message
後把它寫是這樣
所以這是可能的,怎麼可能! 〜感謝很多
更新 基於使用imagecopy
功能
<?PHP
header ("Content-type: image/gif");
$image=imagecreatefromgif("myimage.gif"); // will be background img
$src = imagecreatefromjpeg('flag.jpg');// new image will add
imagecopy($image, $src, 120, 10, 0, 0, 32, 20);
$black = imagecolorallocate($image, 0,0,0);
$message = "Hello Egypt";
imagestring($image, 4, 25, 10, $message, $black);
imagegif($image);
imagedestroy($image);
?>
輸出@MarcB想法是不正確的顏色爲什麼:(
這方面有任何幫助新問題〜謝謝
http://php.net/imagecopy –
感謝從來不知道imagecopy之前,但我會盡力結合這兩個代碼希望它的作品〜非常感謝 –
@MarcB我更新了代碼,請查看它!爲什麼我得到它不是真正的顏色! –