略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: ImagickDraw::setClipRule

2024-05-07

ImagickDraw::setClipRule

(PECL imagick 2, PECL imagick 3)

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

说明

public ImagickDraw::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
    //\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();
}

?>
add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/imagickdraw.setcliprule.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3