(No version information available, might be only in CVS)
Imagick::setImage — Replaces image in the object
Ta funkcja jest obecnie nieudokumentowana, dostępna jest jedynie lista jej argumentów.
Replaces the current image sequence with the image from replace object.
The replace Imagick object
Zwraca TRUE w przypadku sukcesu.
Zgłasza wyjątek ImagickException w przypadku błędu.
Example #1 A Imagick::setImage() example
An example of using Imagick::setImage()
<?php
/* Create the objects */
$image = new Imagick('source.jpg');
$replace = new Imagick('replace.jpg');
/* source.jpg is replaced with replace.jpg */
$image->setImage($replace);
/* output the image */
header('Content-type: image/jpeg');
echo $image;
?>