image2wbmp是一個程式語言函式名。
用法說明,例子,
用法說明
php環境 (PHP 4 >= 4.0.5, PHP 5)
函式參數
bool image2wbmp ( resource $image [, string $filename [, int $threshold ]] )
例子
<?php
$file = 'php.png';
$image = imagecreatefrompng($file)
;header('Content-type: ' . image_type_to_mime_type(IMAGETYPE_WBMP));
image2wbmp($image); // output the stream directly
imagedestroy($image);
?>