update : 2015.11.03
php.shukuma.com

검색:
 
 
Specifies the opacity of stroked object outlines

ImagickDraw::setStrokeOpacity

(PECL imagick 2.0.0)

ImagickDraw::setStrokeOpacitySpecifies the opacity of stroked object outlines

설명

bool ImagickDraw::setStrokeOpacity ( float $stroke_opacity )
Warning

이 함수는 현재 문서화 되어있지 않습니다; 인수 목록만을 제공합니다.

Specifies the opacity of stroked object outlines.

인수

stroke_opacity

stroke opacity. 1.0 is fully opaque

반환값

값을 반환하지 않습니다.

예제

Example #1 ImagickDraw::setStrokeOpacity()

<?php
function setStrokeOpacity($strokeColor$fillColor$backgroundColor) {
    
$draw = new \ImagickDraw();

    
$draw->setStrokeWidth(1);
    
$draw->setStrokeColor($strokeColor);
    
$draw->setFillColor($fillColor);
    
$draw->setStrokeWidth(10);
    
$draw->setStrokeOpacity(1);
    
$draw->line(10080400125);
    
$draw->rectangle(25200150350);
    
$draw->setStrokeOpacity(0.5);
    
$draw->line(100100400145);
    
$draw->rectangle(200200325350);
    
$draw->setStrokeOpacity(0.2);
    
$draw->line(100120400165);
    
$draw->rectangle(375200500350);

    
$image = new \Imagick();
    
$image->newImage(550400$backgroundColor);
    
$image->setImageFormat("png");
    
$image->drawImage($draw);

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

?>