Gmagick::getstrokewidth()函数是PHP中的内置函数,用于返回用于绘制对象轮廓的笔触宽度。
用法:
public GmagickDraw::getstrokewidth( void )
参数:该函数不接受任何参数。
返回值:此函数返回一个描述描边宽度的双精度型。
错误/异常:此函数在出错时引发GmagickException。
以下示例程序旨在说明PHP中的Gmagick::getstrokewidth()函数:
程序:
<?php
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Create GmagickPixel object
$strokeColor = new GmagickPixel('Red');
$fillColor = new GmagickPixel('Green');
// Set the color, opacity of image
$draw->setStrokeOpacity(1);
$draw->setStrokeColor('Red');
$draw->setFillColor('Green');
// 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 getstrokewidth() function
print_r($draw->getstrokewidth());
?>
输出:
7
参考: http://php.net/manual/en/gmagickdraw.getstrokewidth.php
相关用法
- PHP ImagickDraw getStrokeWidth()用法及代码示例
- PHP GmagickDraw arc()用法及代码示例
- PHP GmagickDraw getstrokecolor()用法及代码示例
- PHP GmagickDraw getfontweight()用法及代码示例
- PHP GmagickDraw polyline()用法及代码示例
- PHP GmagickDraw getfontstyle()用法及代码示例
- PHP GmagickDraw getfillopacity()用法及代码示例
- PHP GmagickDraw setfillcolor()用法及代码示例
- PHP GmagickDraw polygon()用法及代码示例
- PHP GmagickDraw annotate()用法及代码示例
- PHP GmagickDraw point()用法及代码示例
- PHP GmagickDraw setfont()用法及代码示例
- PHP GmagickDraw getstrokeopacity()用法及代码示例
- PHP GmagickDraw line()用法及代码示例
- PHP GmagickDraw getfontsize()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | GmagickDraw getstrokewidth() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。