La función Imagick::readImage() es una función incorporada en PHP que se utiliza para leer una imagen del nombre de archivo.
Sintaxis:
bool Imagick::readImage( string $filename )
Parámetros: esta función acepta un solo parámetro $filename que contiene el nombre del archivo. También puede aceptar la URL del archivo.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función Imagick::readImage() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick(); // Read the image $imagick->readImage( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Display the image header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick(); // Read the image $imagick->readImage( 'https://media.geeksforgeeks.org/wp-content/uploads/20191117194549/g4ganimatedcolor.gif'); // Display the image header("Content-Type: image/gif"); echo $imagick->getImagesBlob(); ?>
Producción:
Referencia: https://www.php.net/manual/en/imagick.readimage.php