ImagickDraw::line()函数是PHP的Imagick库中的内置函数,用于画线。此函数使用当前笔触颜色,笔触不透明度和笔触宽度绘制线条。
用法:
bool ImagickDraw::line( $sx, $sy, $ex, $ey )
参数:该函数接受上述和以下所述的四个参数:
- $sx:此参数采用起始x坐标的值。
- $sy:此参数采用起始y坐标的值。
- $ex:此参数采用x坐标的结束值。
- $ey:此参数采用y坐标结尾的值。
返回值:成功时此函数返回TRUE。
下面在PHP中对ImagickDraw::line()函数进行编程:
程序:
<?php
// Create an Imagick object
$draw = new \ImagickDraw();
// Function to fill color
$draw->setFillColor('red');
// Function to draw line
$draw->line(10, 30, 180, 200);
// Create Imagick object
$imagick = new \Imagick();
// Create new image of given size
$imagick->newImage(300, 300, 'white');
// Set the image format
$imagick->setImageFormat("png");
// Function to draw the image
$imagick->drawImage($draw);
header("Content-Type: image/png");
// Display the output image
echo $imagick->getImageBlob();
?>
输出:
参考: http://php.net/manual/en/imagickdraw.line.php
相关用法
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw getTextAntialias()用法及代码示例
- PHP ImagickDraw setStrokeLineCap()用法及代码示例
- PHP ImagickDraw getStrokeMiterLimit()用法及代码示例
- PHP ImagickDraw setStrokeDashOffset()用法及代码示例
- PHP ImagickDraw setFillColor()用法及代码示例
- PHP ImagickDraw setFillRule()用法及代码示例
- PHP ImagickDraw getFillRule()用法及代码示例
- PHP ImagickDraw setGravity()用法及代码示例
- PHP ImagickDraw getStrokeLineJoin()用法及代码示例
- PHP ImagickDraw getTextDecoration()用法及代码示例
- PHP ImagickDraw getTextInterlineSpacing()用法及代码示例
- PHP ImagickDraw getStrokeLineCap()用法及代码示例
- PHP ImagickDraw setFontSize()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | ImagickDraw line() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。