(PECL imagick 2.0.0)
Replaces image in the object
bool Imagick::setImage ( Imagick $replace )
Replaces the current image sequence with the image from replace object.
Parameters:
replace
The replace Imagick object
Returns:
Returns TRUE
on success.
Exception:
Throws ImagickException on error.
Examples:
A Imagick::setImage() example
An example of using Imagick::setImage()
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?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 ; ?> |
Please login to continue.