La función ImagickDraw::point() es una función incorporada en la biblioteca Imagick de PHP que se usa para dibujar un punto. Esta función utiliza el color y el grosor del trazo actuales en las coordenadas especificadas.
Sintaxis:
bool ImagickDraw::point( $x, $y )
Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- $x: este parámetro se utiliza para mantener el valor de la coordenada x.
- $y: este parámetro se utiliza para mantener el valor de la coordenada y.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
El siguiente programa ilustra la función ImagickDraw::point() en PHP:
Programa:
<?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(); ?>
Producción:
Referencia: http://php.net/manual/en/imagickdraw.point.php
Publicación traducida automáticamente
Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA