Imagick
PHP Manual

Imagick::compositeImage

(PECL imagick 2.0.0)

Imagick::compositeImage把一张图合并到一张图

说明

bool Imagick::compositeImage ( Imagick $composite_object , int $composite , int $x , int $y [, int $channel = Imagick::CHANNEL_ALL ] )

把一张图合并到另一张图的指定位置

参数

composite_object

用于合并的图片的Imagick对象

composite

合并操作,定义操作常量。 具体请查看 合并操作常量列表

x

相对图像顶点左上位置(0,0)的横坐标

y

相对图像顶点左上位置(0,0)的纵坐标

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)可以参考这个列表 通道常量列表.

返回值

成功时返回 TRUE


Imagick
PHP Manual