ImagickDraw::matte

(PECL imagick 2, PECL imagick 3)

ImagickDraw::matte在图像的不透明度通道上绘制

描述

public ImagickDraw::matte(float $x, float $y, int $paintMethod): bool
警告

此函数目前没有文档;只有它的参数列表可用。

在图像的不透明度通道上绘制,以将受影响的像素设置为透明,以影响像素的不透明度。

参数

x

遮罩的 x 坐标

y

遮罩的 y 坐标

paintMethod

PAINT 常量之一 (imagick::PAINT_*)。

返回值

如果成功则返回 true,如果失败则返回 false

示例

示例 #1 ImagickDraw::matte() 示例

<?php
function matte($strokeColor, $fillColor, $backgroundColor, $paintType) {
$draw = new \ImagickDraw();

$draw->setStrokeColor($strokeColor);
$draw->setFillColor($fillColor);

$draw->setStrokeWidth(2);
$draw->setFontSize(72);

$draw->matte(120, 120, $paintType);
$draw->rectangle(100, 100, 300, 200);

$imagick = new \Imagick();
$imagick->newImage(500, 500, $backgroundColor);
$imagick->setImageFormat("png");
$imagick->drawImage($draw);

header("Content-Type: image/png");
echo
$imagick->getImageBlob();
}

?>

添加说明

用户贡献的说明

此页面没有用户贡献的说明。
To Top