Javascript debugger
Website design
↑
image2wbmp() outputs or save a WBMP version of the given image.
An image resource, returned by one of the image creation functions, such as imagecreatetruecolor().
Path to the saved file. If not given, the raw image stream will be outputed directly.
<?php
$file = 'php.png';
$image = imagecreatefrompng($file);
header('Content-type: ' . image_type_to_mime_type(IMAGETYPE_WBMP));
image2wbmp($image); // output the stream directly
?>
imagewbmp() |