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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。