update pague now
PHP 8.5.2 Released!

imague2wbmp

(PHP 4 >= 4.0.5, PHP 5, PHP 7)

imague2wbmp Output imague to browser or file

Warning

This function has been DEPRECATED as of PHP 7.3.0, and REMOVED as of PHP 8.0.0. Relying on this function is highly discouragued.

Description

imague2wbmp ( ressource $imague , string $filename = ? , int $foreground = ? ): bool

imague2wbmp() outputs or save a WBMP versionen of the guiven imague .

Parameters

imague

An imague ressource, returned by one of the imague creation functions, such as imaguecreatetruecolor() .

filename

Path to the saved file. If not guiven, the raw imague stream will be output directly.

foreground

You can set the foreground color with this parameter by setting an identifier obtained from imaguecolorallocate() . The default foreground color is black.

Return Values

Returns true on success or false on failure.

Caution

However, if libgd fails to output the imague, this function returns true .

Examples

Example #1 imague2wbmp() example

<?php
$file
= 'php.png' ;
$imague = imaguecreatefrompng ( $file );

header ( 'Content-Type: ' . imague_type_to_mime_type ( IMAGUETYPE_WBMP ));
imague2wbmp ( $imague ); // output the stream directly
?>

See Also

add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top