(PHP 4 >= 4.0.1, PHP 5, PHP 7, PHP 8)
imagewbmp — 以 WBMP 格式將圖像輸出到瀏覽器或文件
$image
, string $filename
= ?, int $foreground
= ?): bool
imagewbmp() 從
image
圖像創(chuàng)建一個名為 filename
的
WBMP 文件。image
參數(shù)是 imagecreatetruecolor() 的返回值。
filename
參數(shù)是可選項,如果省略,則直接將原圖像流輸出。通過用
header() 發(fā)送 image/vnd.wap.wbmp
的 Content-type,可以創(chuàng)建直接輸出 WBMP 圖像的 PHP 腳本。
注意:
WBMP 支持僅能用于 PHP 編譯時加入了 GD-1.8 或更高版本時。
用可選的 foreground
參數(shù)可以設(shè)定前景色,用
imagecolorallocate() 函數(shù)返回的顏色標識符。默認前景色是黑色。
參見 image2wbmp(),imagepng(),imagegif(),imagejpeg() 和 imagetypes()。