La función GmagickDraw::line() es una función incorporada en PHP que se usa para dibujar una línea. Esta función dibuja la línea utilizando el color de trazo actual, la opacidad del trazo y el ancho del trazo.
Sintaxis:
public GmagickDraw::line( $sx, $sy, $ex, $ey )
Parámetros: esta función acepta cuatro parámetros, como se mencionó anteriormente y se describe a continuación:
- $sx: este parámetro toma el valor de la coordenada x inicial.
- $sy: este parámetro toma el valor de la coordenada y inicial.
- $ex: este parámetro toma el valor de la coordenada x final.
- $ex: su parámetro toma el valor de la coordenada y final.
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::annotate() 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); // Function to draw line $draw->line(20, 20, 280, 465); $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 GmagickDraw(); // Set the color $draw->setFillColor('Green'); // Set the width and height of image $draw->setStrokeWidth(1); // Function to draw line for($x = 0; $x < 40; $x++) { $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500)); $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500)); $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500)); $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500)); } $gmagick = new Gmagick(); $gmagick->newImage(500, 500, 'White'); $gmagick->setImageFormat("png"); // Set the color $draw->setFillColor('Black'); $draw->setFontSize(25); // Use of drawimage function $gmagick->drawImage($draw); $gmagick->annotateImage($draw, 5, 120, 0, 'GeeksforGeeks: A computer science portal'); // Display the output image header("Content-Type: image/png"); echo $gmagick->getImageBlob(); ?>
Producción:
Referencia: http://php.net/manual/en/gmagickdraw.line.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