GmagickDraw::point()函數是PHP中的一個內置函數,用於繪製點。此函數使用指定坐標處的當前筆觸顏色和筆觸粗細。
用法:
public GmagickDraw::point( $x, $y )
參數:該函數接受上述和以下描述的兩個參數:
- $x:此參數采用x坐標的值。
- $y:此參數采用y坐標的值。
返回值:成功時,此函數返回GmagickDraw對象。
錯誤/異常:此函數在出錯時引發GmagickException。
以下示例程序旨在說明PHP中的GmagickDraw::point()函數:
程序1:
<?php
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the color
$draw->setFillColor('Green');
// Set the width and height of image
$draw->setStrokeWidth(1170);
$draw->setFontSize(72);
// Use loop to draw 10000 points in given area
for ($x = 0; $x < 10000; $x++) {
$draw->point(rand(0, 500), rand(0, 500));
}
$gmagick = new Gmagick();
$gmagick->newImage(500, 500, 'White');
$gmagick->setImageFormat("png");
// Use of drawimage function
$gmagick->drawImage($draw);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
輸出:
程序2:
<?php
// Create a GmagickDraw object
$draw = new ImagickDraw();
// Set the color
// Set the width and height of image
$draw->setStrokeWidth(7000);
$draw->setFontSize(72);
// Function to draw point
for ($x = 0; $x < 10000; $x++) {
$draw->setFillColor('green');
$draw->point(rand(0, 900), rand(0, 500));
}
$draw->setFontSize(40);
$gmagick = new Imagick();
$gmagick->newImage(900, 500, 'White');
$gmagick->setImageFormat("png");
// Annotate image
$gmagick->annotateImage($draw, 5, 120, 0,
'GeeksforGeeks: A computer science portal');
$gmagick->annotateImage($draw, 5, 220, 0,
'sarthak_ishu11');
// Use of drawimage function
$gmagick->drawImage($draw);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
輸出:
參考: http://php.net/manual/en/gmagickdraw.point.php
相關用法
- PHP GmagickDraw arc()用法及代碼示例
- PHP GmagickDraw getstrokecolor()用法及代碼示例
- PHP GmagickDraw line()用法及代碼示例
- PHP GmagickDraw polyline()用法及代碼示例
- PHP GmagickDraw getfontstyle()用法及代碼示例
- PHP GmagickDraw getfillopacity()用法及代碼示例
- PHP GmagickDraw ellipse()用法及代碼示例
- PHP GmagickDraw polygon()用法及代碼示例
- PHP GmagickDraw getstrokeopacity()用法及代碼示例
- PHP GmagickDraw getfontsize()用法及代碼示例
- PHP GmagickDraw getfont()用法及代碼示例
- PHP GmagickDraw settextencoding()用法及代碼示例
- PHP GmagickDraw bezier()用法及代碼示例
- PHP GmagickDraw setfillcolor()用法及代碼示例
- PHP GmagickDraw setfontsize()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | GmagickDraw point() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。