ImagickDraw::setClipRule

(PECL imagick 2, PECL imagick 3)

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

Descrição

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

Esta função não está documentada; apenas a lista de argumentos está disponível.

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

Parâmetros

fill_rule

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

Valor Retornado

Nenhum valor é retornado.

Exemplos

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