ImagickDraw::setClipRule

(PECL imagick 2, PECL imagick 3)

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

Description

publicImagickDraw::setClipRule(int$fill_rule): bool
Warning

This function is currently not documented; only its argument list is available.

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

Parameters

fill_rule

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

Return Values

No value is returned.

Examples

Example #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