PHP | función imagecreatefrombmp()

La función imagecreatefrombmp() es una función incorporada en PHP que se usa para crear una nueva imagen desde un archivo o URL.

Sintaxis:

resource imagecreatefrombmp( string $filename )

Parámetros: esta función acepta un solo parámetro $filename que contiene el nombre o la URL de un archivo.

Valor devuelto: esta función devuelve un identificador de recurso de imagen en caso de éxito, FALSO en caso de error.

Los programas dados a continuación ilustran la función imagecreatefrombmp() en PHP:

Programa 1: Ver un archivo bmp en el navegador.

<?php
  
// Load the BMP image
$im = imagecreatefrombmp(
'https://media.geeksforgeeks.org/wp-content/uploads/20200122193540/g4gbmp.bmp');
  
// Output the image to browser
header('Content-type: image/bmp');  
imagebmp($im);
imagedestroy($im);
?>

Producción:

Programa 2: Este programa convierte el mapa de bits en png.

<?php
  
// Load the BMP image
$im = imagecreatefrombmp(
'https://media.geeksforgeeks.org/wp-content/uploads/20200122193540/g4gbmp.bmp');
  
// Convert it to a PNG file, press Ctrl + S to save the new png image
header('Content-type: image/png');  
imagepng($im);
imagedestroy($im);
?>

Producción:

Referencia: https://www.php.net/manual/en/function.imagecreatefrombmp.php

Publicación traducida automáticamente

Artículo escrito por gurrrung y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *