📅  最后修改于: 2023-12-03 15:18:23.565000             🧑  作者: Mango
GmagickDraw setstrokeopacity ( float $opacity )
函数用于设置图像边框的透明度值。
opacity
: 透明度值,取值范围为0到1之间,默认为1.
该函数没有返回值。
<?php
// 创建 Gmagick 对象
$draw = new GmagickDraw();
// 设置边框透明度为0.5
$draw->setstrokeopacity(0.5);
// 其他操作...
?>
### PHP | GmagickDraw setstrokeopacity()函数
---
#### 函数介绍
`GmagickDraw setstrokeopacity ( float $opacity )`函数用于设置图像边框的透明度值。
---
#### 函数参数
`opacity`: 透明度值,取值范围为0到1之间,默认为1.
---
#### 返回值
该函数没有返回值。
---
#### 示例代码
setstrokeopacity(0.5);
// 其他操作...
?>