(PHP 7 >= 7.2.0)
imagebmp — Output a BMP image to browser or file
Outputs or saves a BMP version of the given image
.
image
Un recurso image, es devuelto por una de las funciones de creación de imágenes, como imagecreatetruecolor().
to
La ruta o un recurso de flujo de apertura (el cual se cierra automáticamente después de que devuelva esta función) donde guardar el fichero. Si no se establece, o su valor es NULL
, se mostrará directamente en la salida el flujo de imagen sin tratar.
Nota:
NULL
is invalid if thecompressed
arguments is not used.
compressed
Whether the BMP should be compressed with run-length encoding (RLE), or not.
Devuelve TRUE
en caso de éxito o FALSE
en caso de error.
Sin embargo, si libgd falla al producir la imagen, esta función devuelve TRUE
.
Ejemplo #1 Saving a BMP file
<?php
// Create a blank image and add some text
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, 'BMP with PHP', $text_color);
// Save the image
imagebmp($im, 'php.bmp');
// Free up memory
imagedestroy($im);
?>