ImagickDraw::setClipRule

(PECL imagick 2.0.0)

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

说锟斤拷

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

锟斤拷锟斤拷锟斤拷锟斤拷未锟斤拷写锟侥碉拷锟斤拷锟斤拷锟叫诧拷锟斤拷锟叫憋拷

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

锟斤拷锟斤拷

fill_rule

FILLRULE_ constant

锟斤拷锟斤拷值

没锟叫凤拷锟斤拷值锟斤拷

锟斤拷锟斤拷

Example #1 ImagickDraw::setClipRule()

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

    
$draw = new \ImagickDraw();

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

    
$clipPathName 'testClipPath';
    
$draw->pushClipPath($clipPathName);
    
$draw->setClipRule(\Imagick::FILLRULE_EVENODD);
    
$draw->rectangle(00300500);
    
$draw->rectangle(2000500500);
    
$draw->popClipPath();
    
$draw->setClipPath($clipPathName);
    
$draw->rectangle(200200300300);

    
$imagick = new \Imagick();
    
$imagick->newImage(500500$backgroundColor);
    
$imagick->setImageFormat("png");

    
$imagick->drawImage($draw);

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

?>