image2wbmp
image2wbmp
gd.image.output
bool **image2wbmp** resource $image string $filename int $foreground
outputs or save a
version of the given .
image2wbmp``image
image
An image resource, returned by one of the image creation functions,
such as .
imagecreatetruecolor
filenamePath to the saved file. If not given, the raw image stream will be
output directly.
foreground
You can set the foreground color with this parameter by setting an
identifier obtained from .
The default foreground color is black.
imagecolorallocate
return.success
Voorbeeld: example
<?php
$file = 'php.png';
$image = imagecreatefrompng($file);
header('Content-Type: ' . image_type_to_mime_type(IMAGETYPE_WBMP));
image2wbmp($image); // output the stream directly
?>
imagewbmp