📜  PHP | GmagickDraw getstrokeopacity()函数

📅  最后修改于: 2022-05-13 01:56:19.216000             🧑  作者: Mango

PHP | GmagickDraw getstrokeopacity()函数

Gmagick::getstrokeopacity()函数是PHP中的一个内置函数,用于返回描边对象轮廓的不透明度。

句法:

public GmagickDraw::getstrokeopacity( void )


参数:此函数不接受任何参数。

返回值:此函数返回描述不透明度的双精度值。

错误/异常:此函数在错误时抛出 GmagickException。

下面的程序说明了PHP中的Gmagick::getstrokeopacity()函数:

方案一:

setstrokeopacity(1); 
  
// Set the width and height of image 
$draw->setStrokeWidth(7); 
$draw->setFontSize(72); 
     
// Function to draw circle  
$draw->circle(250, 250, 100, 150); 
   
$gmagick = new Gmagick(); 
$gmagick->newImage(500, 500, 'White'); 
$gmagick->setImageFormat("png"); 
$gmagick->drawImage($draw); 
  
// Using getstrokeopacity() function
  
print_r($draw->getstrokeopacity());
?> 

输出:

1

方案二:

setFillColor('Green'); 
     
// Set stroke opacity
$draw->setstrokeopacity(0.5);
   
// Function to draw line
for($x = 0; $x < 40; $x++) {
    $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500));
    $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500));
    $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500));
    $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500));
}
  
$gmagick = new Gmagick(); 
$gmagick->newImage(500, 500, 'White'); 
$gmagick->setImageFormat("png"); 
   
// Set the color
$draw->setFillColor('Black'); 
   
// Set Font Size
$draw->setFontSize(25); 
   
// Use of drawimage function
$gmagick->drawImage($draw); 
$gmagick->annotateImage($draw, 5, 120, 0, 
        'GeeksforGeeks: A computer science portal'); 
   
// Display the stroke opacity
echo $draw->getstrokeopacity();
  
?> 

输出:

0.49999237048905

参考: http: PHP。 PHP