close

 

<?php
// 創建空白圖像並添加文字
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);

// 保存圖像
imagexbm($im, 'simpletext.xbm');

// 釋放內存
imagedestroy($im);
?>

<?php
// 創建空白圖像並添加文字
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);

// 設置替換的前景色
$foreground_color = imagecolorallocate($im, 255, 0, 0);

// 保存圖像
imagexbm($im, NULL, $foreground_color);

// 釋放內存
imagedestroy($im);
?>

arrow
arrow
    全站熱搜

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