首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

Imagick::compositeImage

(PECL imagick 2.0.0)

Imagick::compositeImage — Composite one image onto another

Description

代码语言:javascript
复制
bool Imagick::compositeImage ( Imagick $composite_object , int $composite , int $x , int $y [, int $channel = Imagick::CHANNEL_ALL ] )

Composite one image onto another at the specified offset. Any extra arguments needed for the compose algorithm should passed to setImageArtifact with 'compose:args' as the first parameter and the data as the second parameter.

Parameters

composite_object

Imagick object which holds the composite image

compose

Composite operator. See Composite Operator Constants

x

The column offset of the composited image

y

The row offset of the composited image

channel

Provide any channel constant that is valid for your channel mode. To apply to more than one channel, combine channeltype constants using bitwise operators. Refer to this list of channel constants.

Return Values

Returns TRUE on success.

Examples

Example #1 Using Imagick::compositeImage():

Composite two images with the 'mathematics' compose method

代码语言:javascript
复制
<?php

//?Equivalent?to?running?the?command
//?convert?src1.png?src2.png?-compose?mathematics?-define?compose:args="1,0,-0.5,0.5"?-composite?output.png

$src1?=?new?\Imagick("./src1.png");
$src2?=?new?\Imagick("./src2.png");

$src1->setImageVirtualPixelMethod(Imagick::VIRTUALPIXELMETHOD_TRANSPARENT);
$src1->setImageArtifact('compose:args',?"1,0,-0.5,0.5");
$src1->compositeImage($src2,?Imagick::COMPOSITE_MATHEMATICS,?0,?0);
$src1->writeImage("./output.png");

?>

See Also

  • Imagick::setImageArtifact() - Set image artifact

← Imagick::compareImages

Imagick::__construct →

代码语言:txt
复制
 ? 1997–2017 The PHP Documentation Group

Licensed under the Creative Commons Attribution License v3.0 or later.

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com