Imagick::readImage


wizard apg

READS a image from a filename.



<?php

bool Imagick
::readImage(string $filename);

?>

$filename


The filename to be read.





This function returns a TRUE on success.



  1 EXERCISE   

<?php

$imagick 
= new Imagick();

$jpgfn PATH2IMGW '/jpg/aa.jpg';

$imagick->readImage($jpgfn);

// See the next function

?>

  2 EXERCISE   

<?php
  
// Create a new imagick object
$imagick = new Imagick();

$pngfn PATH2IMGW '/gif/E 01 01.gif';

$imagick->readImage($pngfn);

// See the next function

?>

  3 EXERCISE   

<?php
  
// Create a new imagick object
$imagick = new Imagick();

$pngfn PATH2IMGW '/png/wizard.png';

$imagick->readImage($pngfn);

// See the next function

?>