close

 

<?php
$im = imagecreatefrompng("test.png");
imagepng($im);
?>


<?php header("Content-type: image/png"); //設定圖檔格式
$im = @imagecreatetruecolor(80, 20) or die("無法建立圖片!"); //建立一張全彩圖
$text_color = imagecolorallocate($im, 255, 255, 255); //設定文字顏色
imagestring($im, 2, 5, 2, "Hi! I'm Tad", $text_color); //將字串加入圖片中
imagepng($im); //產生圖片
imagedestroy($im); //結束$im釋放記憶體
?>

arrow
arrow
    全站熱搜

    stockwfj3 發表在 痞客邦 留言(0) 人氣()