PHP | GmagickDraw getstrokewidth()函数
Gmagick::getstrokewidth()函数是PHP中的一个内置函数,用于返回用于绘制对象轮廓的笔画宽度。
句法:
public GmagickDraw::getstrokewidth( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个描述笔划宽度的双精度值。
错误/异常:此函数在错误时抛出 GmagickException。
下面的程序说明了PHP中的Gmagick::getstrokewidth()函数:
程序:
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。 PHP
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。