<?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);
?>

文章標籤
全站熱搜
創作者介紹
創作者 stockwfj3 的頭像
stockwfj3

程式設計@筆記

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