imagexbm
(PHP 5, PHP 7, PHP 8)
imagexbm — 將 XBM 影象輸出到瀏覽器或檔案
說明
imagexbm(resource
$image
, string $filename
, int $foreground
= ?): bool
將 XBM 影象 image
輸出到瀏覽器或檔案
參數
-
image
-
由圖像建立函式(例如imagecreatetruecolor())返回的 GdImage 對象。
-
filename
-
檔案儲存的路徑或者已打開的流資源(此方法返回后自動關閉該流資源),如果未設定或為
null
,將會直接輸出原始圖像流。 -
foreground
-
你可以從 imagecolorallocate() 分配一個顏色,並設定為該前景色參數。 預設顏色是黑色。
返回值
成功時返回 true
, 或者在失敗時返回 false
。
範例
示例 #1 儲存一個 XBM 檔案
<?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);
?>
示例 #2 以不同前景色儲存一個 XBM 檔案
<?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);
?>