Query: image2wbmp
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
IMAGE2WBMP(3) 1 IMAGE2WBMP(3) image2wbmp - Output image to browser or fileSYNOPSISbool image2wbmp (resource $image, [string $filename], [int $threshold])DESCRIPTIONimage2wbmp(3) outputs or save a WBMP version of the given $image.PARAMETERSo $ image -An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(3). o $filename - Path to the saved file. If not given, the raw image stream will be output directly. o $threshold - Threshold value, between 0 and 255 (inclusive).RETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 image2wbmp(3) example <?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); ?>NOTESNote WBMP support is only available if PHP was compiled against GD-1.8 or later.SEE ALSOimagewbmp(3). PHP Documentation Group IMAGE2WBMP(3)