(PHP 7 >= 7.2.0, PHP 8)
imagebmp — Output a BMP image to browser or file
Outputs or saves a BMP version of the given image.
imageUn recurso image, es devuelto por una de las funciones de creación de imágenes, como imagecreatetruecolor().
fileLa 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:
nullis invalid if thecompressedarguments is not used.
compressedWhether 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.
| Versión | Descripción |
|---|---|
| 8.0.0 |
image expects a GdImage
instance now; previously, a valid gd resource was expected.
|
| 8.0.0 |
The type of compressed is bool now; formerly it was int.
|
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);
?>