La función Gmagick::read() es una función incorporada en PHP que se usa para leer una imagen de su carpeta local y agregarla al objeto Gmagick.
Sintaxis:
Gmagick Gmagick::read( 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::read() en PHP:
Imagen usada:
Programa 1 (Lectura de imagen de carpeta):
<?php // Create a new Gmagick object $gmagick = new Gmagick(); // Read an image $gmagick->read('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->read('geeksforgeeks.png'); // Here you can further work with your loaded image // Add frame to image $gmagick->frameimage('green', 15, 15, 5, 5); // Output the image header('Content-type: image/png'); echo $gmagick; ?>
Producción:
Referencia: https://www.php.net/manual/en/gmagick.read.php