PHP 8.5.0 Alpha 2 available for testing

png2wbmp

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

png2wbmpConvierte una imagen PNG en imagen WBMP

Advertencia

Esta funcionalidad está OBSOLETA a partir de PHP 7.2.0 y ha sido ELIMINADA a partir de PHP 8.0.0.

Descripción

png2wbmp(
    string $pngname,
    string $wbmpname,
    int $dest_height,
    int $dest_width,
    int $threshold
): bool

Convierte una imagen PNG en imagen WBMP.

Parámetros

pngname

Ruta al fichero PNG.

wbmpname

Ruta al fichero final WBMP.

dest_height

Altura de la imagen de destino.

dest_width

Ancho de la imagen de destino.

threshold

Valor del umbral, entre 0 y 8 inclusive.

Valores devueltos

Esta función retorna true en caso de éxito o false si ocurre un error.

Precaución

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

Ejemplos

Ejemplo #1 Ejemplo con png2wbmp()

<?php
// Ruta a la imagen PNG
$path = './test.png';

// Obtención del tamaño de la imagen
$image = getimagesize($path);

// Conversión de la imagen
png2wbmp($path, './test.wbmp', $image[1], $image[0], 7);
?>

Ver también

  • jpeg2wbmp() - Convierte una imagen JPEG en imagen WBMP
add a note

User Contributed Notes 1 note

up
0
Window Bump Map
17 years ago
WBMP is NOT windows bitmap, it is wireless bitmap. just to state that nice and clearly.
To Top