<?php
// Create a new imagick object
$imagick = new Imagick();
// Read the image
$pngfn='myfile.png';
$imagick->readImage($pngfn);
// Display the image
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
(PECL imagick 2, PECL imagick 3)
Imagick::getImage — Returns a new Imagick object
Returns a new Imagick object with the current image sequence.
Questa funzione non contiene parametri.
Returns a new Imagick object with the current image sequence.
Lancia una ImagickException in caso di errore.