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
【PHP ImagickDraw getStrokeOpacity()函数用法指南】参考: http://php.net/manual/en/imagickdraw.getstrokeopacity.php
推荐阅读
- 如何将HTML元素或文档转换为图像()
- 算法设计(以给定大小的组反向链表|套装2)
- C#|方法重载详细介绍
- PHP | date_date_set()函数用法介绍
- Linux C编程详解(进程原理分析、文件描述符和文件记录表、文件句柄和文件原理)
- 网络工程师必备,网络基础技术相关命令详细讲解
- 网络拓扑是什么(计算机网络拓扑结构详解)
- 计算机网络简明教程(二)(网络和主机之间的通信方式是什么())
- 深入操作系统设计原理(一)(操作系统是什么(学习操作系统到底是学什么?))