PHP | imagecreatefromwbmp() Function Last Updated : 30 Jan, 2020 Comments Improve Suggest changes Like Article Like Report The imagecreatefromwbmp() function is an inbuilt function in PHP which is used to create a new image from WBMP file or URL. WBMP (Wireless Application Protocol Bitmap Format) is a monochrome graphics file format optimized for mobile computing devices. This loaded image can be further worked upon in the program. This function is usually used when you want to edit your images after loading them from a WBMP file. An image can be converted into WBMP using imagewbmp() function. Syntax: resource imagecreatefromwbmp( string $filename ) Parameters: This function accepts a single parameter $filename which holds the name of image. Return Value: This function returns an image resource identifier on success, FALSE on errors. Below examples illustrate the imagecreatefromwbmp() function in PHP: Example 1: php <?php // Load an WBMP image from local folder // You can convert any image to WBMP using // imagewbmp() function or online convertors $im = imagecreatefromwbmp('./geeksforgeeks.wbmp'); // View the loaded image in browser imagewbmp($im); imagedestroy($im); ?> Output: This will load the content into browser in the form of unsupported text as browsers don't support WBMP. Example 2: php <?php // Load an WBMP image from local folder // You can convert any image to WBMP using // imagewbmp() function or online convertors $im = imagecreatefromwbmp('./geeksforgeeks.wbmp'); // Output the image by converting it into PNG header('Content-type: image/png'); imagepng($im); imagedestroy($im); ?> Output: Reference: https://www.php.net/manual/en/function.imagecreatefromwbmp.php Create Quiz Comment G gurrrung Follow 0 Improve G gurrrung Follow 0 Improve Article Tags : Web Technologies PHP PHP-function PHP-Imagick Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like