ImagickDraw::setStrokeWidth()函数是PHP中的内置函数,用于设置用于绘制对象轮廓的笔触宽度。
用法:
bool ImagickDraw::setStrokeWidth( $stroke_width )
参数:该函数接受单个参数$stroke_width,该参数用于保存笔划宽度的值。它是一个浮点类型值。
返回值:此函数不返回任何值。
以下示例程序旨在说明PHP中的ImagickDraw::setStrokeWidth()函数:
程序1:
<?php
// Create new Imagick object
$draw = new \ImagickDraw();
// Set the stroke Color
$draw->setStrokeColor('Red');
// Set the image filled color
$draw->setFillColor('Green');
// Set the Stroke Width
$draw->setStrokeWidth(7);
// Draw the Circle
$draw->circle(250, 250, 100, 150);
// Create new Imagick Object
$imagick = new \Imagick();
// Set the dimensions of image
$imagick->newImage(500, 500, 'White');
// Set the image format
$imagick->setImageFormat("png");
// Draw the image
$imagick->drawImage($draw);
header("Content-Type: image/png");
// Display the image
echo $imagick->getImageBlob();
?>
输出:
程序2:
<?php
// Create new Imagick Object
$draw = new ImagickDraw();
// Set the stroke color
$draw->setStrokeColor('black');
// Set the image filled color
$draw->setFillColor('lightgreen');
// Set the Stroke Width
$draw->setStrokeWidth(0);
// Draw the rectangle
$draw->rectangle(100, 100, 300, 300);
// Set Stroke Width
$draw->setStrokeWidth(15);
// Draw the rectangle
$draw->rectangle(400, 100, 600, 300);
// Create new Imagick Object
$imagick = new \Imagick();
// Set the dimensions of image
$imagick->newImage(800, 500, 'White');
// Set the image format
$imagick->setImageFormat("png");
// Draw the image
$imagick->drawImage($draw);
header("Content-Type: image/png");
// Display the image
echo $imagick->getImageBlob();
?>
输出:
参考: http://php.net/manual/en/imagickdraw.setstrokewidth.php
相关用法
- PHP GmagickDraw setstrokewidth()用法及代码示例
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw popDefs()用法及代码示例
- PHP ImagickDraw getClipUnits()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP ImagickDraw setStrokeColor()用法及代码示例
- PHP ImagickDraw pathCurveToAbsolute()用法及代码示例
- PHP ImagickDraw pushDefs()用法及代码示例
- PHP ImagickDraw rotate()用法及代码示例
- PHP ImagickDraw setTextAlignment()用法及代码示例
- PHP ImagickDraw getFillColor()用法及代码示例
- PHP ImagickDraw pathCurveToRelative()用法及代码示例
- PHP ImagickDraw getTextKerning()用法及代码示例
- PHP ImagickDraw pathCurveToSmoothAbsolute()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | ImagickDraw setStrokeWidth() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。