La función Gmagick::readimage() es una función incorporada en PHP que se usa para leer una imagen de su carpeta local y agregarla al objeto Gmagick. Esta es una alternativa a la función read() .
Sintaxis:
Gmagick Gmagick::readimage( string $filename )
Parámetros: esta función acepta un solo parámetro $filename que contiene el nombre del archivo.
Valor de retorno: esta función devuelve un objeto Gmagick que contiene la imagen.
Excepciones: esta función lanza GmagickException en caso de error.
Los programas dados a continuación ilustran la función Gmagick::readimage() en PHP:
Imagen usada:
Programa 1 (Lectura de imagen de carpeta):
<?php // Create a new Gmagick object $gmagick = new Gmagick(); // Read an image $gmagick->readimage('geeksforgeeks.png'); // Output the image header('Content-type: image/png'); echo $gmagick; ?>
Producción:
Programa 2 (Edición de imagen después de la lectura):
<?php // Create a new Gmagick object $gmagick = new Gmagick(); // Read an image $gmagick->readimage('geeksforgeeks.png'); // Here you can further work with your loaded image // Simulate a charcoal drawing $gmagick->charcoalimage(0.1, 10); // Output the image header('Content-type: image/png'); echo $gmagick; ?>
Producción:
Referencia: https://www.php.net/manual/en/gmagick.readimage.php