WBMP is NOT windows bitmap, it is wireless bitmap. just to state that nice and clearly.
(PHP 4 >= 4.0.5, PHP 5, PHP 7)
png2wbmp — Convertir un archivo de imagen PNG a un archivo de imagen WBMP
$pngname
,$wbmpname
,$dest_height
,$dest_width
,$threshold
Convierte un archivo PNG a un archivo WBMP.
pngname
Ruta del archivo PNG.
wbmpname
Ruta del archivo WBMP de destino.
dest_height
Alto de la imagen de destino.
dest_width
Ancho de la imagen de destino.
threshold
Valor de umbral, entre 0 y 8 (inclusive).
Ejemplo #1 Ejmplo de png2wbmp()
<?php
// Ruta al png objetivo
$ruta = './prueba.png';
// Obtener las dimensiones de la imagen
$imagen = getimagesize($ruta);
// Convertir la imagen
png2wbmp($ruta, './prueba.wbmp', $imagen[1], $imagen[0], 7);
?>
WBMP is NOT windows bitmap, it is wireless bitmap. just to state that nice and clearly.