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

search for in the

Imagick::setImageAlphaChannel> <Imagick::setGravity
[edit] Last updated: Fri, 14 Jun 2013

view this page in

Imagick::setImage

(PECL imagick 2.0.0)

Imagick::setImageReplaces image in the object

说明

bool Imagick::setImage ( Imagick $replace )

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

参数

replace

The replace Imagick object

返回值

成功时返回 TRUE

错误/异常

错误时抛出 ImagickException。

范例

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 - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites