La función imagecreatefromwbmp() es una función incorporada en PHP que se usa para crear una nueva imagen desde un archivo WBMP o URL. WBMP (formato de mapa de bits de protocolo de aplicación inalámbrica) es un formato de archivo de gráficos monocromáticos optimizado para dispositivos informáticos móviles. Esta imagen cargada se puede trabajar más en el programa. Esta función generalmente se usa cuando desea editar sus imágenes después de cargarlas desde un archivo WBMP. Una imagen se puede convertir en WBMP utilizando la función imagewbmp() .
Sintaxis:
resource imagecreatefromwbmp( string $filename )
Parámetros: esta función acepta un solo parámetro $filename que contiene el nombre de la imagen.
Valor devuelto: esta función devuelve un identificador de recurso de imagen en caso de éxito, FALSO en caso de error.
Los siguientes ejemplos ilustran la función imagecreatefromwbmp() en PHP:
Ejemplo 1:
<?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); ?>
Producción:
This will load the content into browser in the form of unsupported text as browsers don't support WBMP.
Ejemplo 2:
<?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); ?>
Producción:
Referencia: https://www.php.net/manual/en/function.imagecreatefromwbmp.php