(PHP 5, PHP 7, PHP 8)
imagexbm — 將 XBM 圖像輸出到瀏覽器或文件
$image
, string $filename
, int $foreground
= ?): bool
將 XBM 圖像 image
輸出到瀏覽器或文件
image
由圖象創(chuàng)建函數(shù)(例如imagecreatetruecolor())返回的 GdImage 對(duì)象。
filename
文件保存的路徑或者已打開(kāi)的流資源(此方法返回后自動(dòng)關(guān)閉該流資源),如果未設(shè)置或?yàn)?null
,將會(huì)直接輸出原始圖象流。
foreground
你可以從 imagecolorallocate() 分配一個(gè)顏色,并設(shè)置為該前景色參數(shù)。 默認(rèn)顏色是黑色。
成功時(shí)返回 true
, 或者在失敗時(shí)返回 false
。
示例 #1 保存一個(gè) XBM 文件
<?php
// 創(chuàng)建空白圖像并添加文字
$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');
// 釋放內(nèi)存
imagedestroy($im);
?>
示例 #2 以不同前景色保存一個(gè) XBM 文件
<?php
// 創(chuàng)建空白圖像并添加文字
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
// 設(shè)置替換的前景色
$foreground_color = imagecolorallocate($im, 255, 0, 0);
// 保存圖像
imagexbm($im, NULL, $foreground_color);
// 釋放內(nèi)存
imagedestroy($im);
?>