downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Imagick::setImageAlphaChannel> <Imagick::setGravity
Last updated: Fri, 20 Nov 2009

view this page in

Imagick::setImage

(PECL imagick 2.0.0)

Imagick::setImageReplaces image in the object

Descrierea

bool Imagick::setImage ( Imagick $replace )
Avertizare

Această funcţie nu este documentată în prezent; este disponibilă numai lista sa de argumente.

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

Parametri

replace

The replace Imagick object

Valorile întroarse

Întoarce TRUE în caz de succes.

Erori/Excepţii

Aruncă ImagickException în caz de eroare.

Exemple

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;

?>



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

Imagick::setImageAlphaChannel> <Imagick::setGravity
Last updated: Fri, 20 Nov 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites