(PECL imagick 2.0.0)
Imagick::setImage — Replaces image in the object
Esta função não está documentada; somente a lista de argumentos está disponível.
Replaces the current image sequence with the image from replace object.
The replace Imagick object
Retorna TRUE em sucesso.
Dispara ImagickException em erro.
Exemplo #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;
?>