ImagickDraw::setClipRule

(PECL imagick 2, PECL imagick 3)

ImagickDraw::setClipRuleSet the polygon fill rule to be used by the clipping path

说明

publicImagickDraw::setClipRule(int$fill_rule): bool
警告

本函数还未编写文档,仅有参数列表。

Set the polygon fill rule to be used by the clipping path.

参数

fill_rule

One of the FILLRULE constant (imagick::FILLRULE_*).

返回值

没有返回值。

示例

示例 #1 ImagickDraw::setClipRule() example

<?php
function setClipRule($strokeColor, $fillColor, $backgroundColor) {

$draw = new \ImagickDraw();

$draw->setStrokeColor($strokeColor);
$draw->setFillColor($fillColor);
$draw->setStrokeOpacity(1);
$draw->setStrokeWidth(2);
//\Imagick::FILLRULE_EVENODD
To Top