当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ImagickDraw getStrokeOpacity()用法及代码示例


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

用法:

float ImagickDraw::getStrokeOpacity( void )

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

返回值:此函数在成功时返回笔画不透明度。

错误/异常:它会在出错时抛出 ImagickException。



以下示例程序旨在说明 PHP 中的 ImagickDraw::getStrokeOpacity() 函数:

程序:


<?php
  
// Create an ImagickDraw object
$draw = new \ImagickDraw();
  
// Set the Stroke Color 
$draw->setStrokeColor('Green');
  
// Set the Fill Color
$draw->setFillColor('Red');
  
// Set the stroke width
$draw->setStrokeWidth(7);
  
// Draw the rectangle
$draw->rectangle(40, 30, 200, 260);
  
// Set the stroke opacity
$draw->setStrokeOpacity(0.5);
  
// Display the StrokeOpacity 
echo $draw->getStrokeOpacity();
?>

输出:

0.49999237048905

参考: http://php.net/manual/en/imagickdraw.getstrokeopacity.php

相关用法


注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | ImagickDraw getStrokeOpacity() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。