ImagickDraw::point()函数是PHP的Imagick库中的一个内置函数,用于绘制点。此函数使用指定坐标处的当前笔触颜色和笔触粗细。
用法:
bool ImagickDraw::point( $x, $y )
参数:该函数接受上述和以下描述的两个参数:
- $x:此参数用于保存x坐标的值。
- $y:此参数用于保存y坐标的值。
返回值:成功时此函数返回TRUE。
以下示例程序旨在说明PHP中的ImagickDraw::point()函数:
程序:
<?php
// Create an ImagickDraw object
$draw = new \ImagickDraw();
// Set the filled color
$draw->setFillColor('red');
// Use loop to draw 10000 points in given area
for ($x = 0; $x < 10000; $x++) {
$draw->point(rand(0, 300), rand(0, 300));
}
// Create an Imagick object
$imagick = new \Imagick();
// Set the new image 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.point.php
相关用法
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw pathCurveToQuadraticBezierAbsolute()用法及代码示例
- PHP ImagickDraw pathCurveToAbsolute()用法及代码示例
- PHP ImagickDraw getTextInterwordSpacing()用法及代码示例
- PHP ImagickDraw setTextInterlineSpacing()用法及代码示例
- PHP ImagickDraw pathCurveToQuadraticBezierRelative()用法及代码示例
- PHP ImagickDraw setTextInterwordSpacing()用法及代码示例
- PHP ImagickDraw skewY()用法及代码示例
- PHP ImagickDraw setStrokeLineJoin()用法及代码示例
- PHP ImagickDraw getTextUnderColor()用法及代码示例
- PHP ImagickDraw pathClose()用法及代码示例
- PHP ImagickDraw setVectorGraphics()用法及代码示例
- PHP ImagickDraw getVectorGraphics()用法及代码示例
- PHP ImagickDraw setViewbox()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | ImagickDraw point() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。