📜  PHP | imagickdraw point()函数

📅  最后修改于: 2022-05-13 01:56:43.872000             🧑  作者: Mango

PHP | imagickdraw point()函数

ImagickDraw::point()函数是PHP的 Imagick 库中的一个内置函数,用于绘制一个点。此函数使用指定坐标处的当前笔划颜色和笔划粗细。

句法:

bool ImagickDraw::point( $x, $y )

参数:该函数接受上面提到的两个参数,如下所述:

  • $x:这个参数用来保存x坐标的值。
  • $y:这个参数用来保存y坐标的值。

返回值:此函数在成功时返回 TRUE。

下面的程序说明了PHP中的ImagickDraw::point()函数:
程序:

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。 PHP