La función GmagickDraw::point() es una función incorporada en 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:
public GmagickDraw::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 toma el valor de la coordenada x.
- $y: este parámetro toma el valor de la coordenada y.
Valor de retorno: esta función devuelve el objeto GmagickDraw en caso de éxito.
Errores/Excepciones: Esta función lanza GmagickException en caso de error.
Los siguientes programas ilustran la función GmagickDraw::point() en PHP:
Programa 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(); ?>
Producción:
Programa 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(); ?>
Producción:
Referencia: http://php.net/manual/en/gmagickdraw.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