Imagick::setImageAlphaChannel> <Imagick::setGravity
Last updated: Fri, 24 Feb 2012

Imagick::setImage

(PECL imagick 2.0.0)

Imagick::setImageReplaces image in the object

Descrição

bool Imagick::setImage ( Imagick $replace )

Replaces the current image sequence with the image from replace object.

Parâmetros

replace

The replace Imagick object

Valor Retornado

Retorna TRUE em sucesso.

Erros

Dispara ImagickException em erro.

Exemplos

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;

?>



User Contributed Notes
Imagick::setImage
There are no user contributed notes for this page.

Imagick::setImageAlphaChannel> <Imagick::setGravity
Last updated: Fri, 24 Feb 2012