image2wbmp — 以WBMP 格式將影像輸出到瀏覽器或檔案。
int image2wbmp ( resource $image [, string $filename [, int $threshold ]] )
image2wbmp() 從image 映像建立一個名為filename 的WBMP 檔案。 image 參數是某個建立影像函數的回傳值,例如imagecreatetruecolor()。
filename 參數是可選項,如果省略,則直接將原始影像流輸出。
<?php$file = 'php.jpg';$image = imagecreatefrompng($file);header('Content-type: ' . image_type_to_mime(IMAGETYPE_WBMP));image2wbmp($file); // 直接將原始影像流輸出?>