La función ImagickDraw::pathLineToAbsolute() es una función incorporada en PHP que se usa para dibujar una ruta de línea desde el punto actual hasta la coordenada dada usando coordenadas absolutas. La coordenada se convierte entonces en el nuevo punto actual. El punto inicial se puede establecer mediante la función pathMoveToAbsolute() .
Sintaxis:
bool ImagickDraw::pathLineToAbsolute( float $x, float $y )
Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- $x: Especifica la coordenada x inicial.
- $y: especifica la coordenada y inicial.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Los siguientes programas ilustran la función ImagickDraw::pathLineToAbsolute() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, 'white'); // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the fill color $draw->setFillColor('black'); // Create a path $draw->pathStart(); // Use 50, 50 as start point $draw->pathMoveToAbsolute(50, 50); // Use 100, 150 as end point $draw->pathLineToAbsolute(100, 150); // End the path $draw->pathFinish(); // Render the draw commands $imagick->drawImage($draw); // Show the output $imagick->setImageFormat('png'); header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, 'white'); // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the fill color $draw->setFillColor('black'); // Create a path $draw->pathStart(); // Draw a triangle // First corner $draw->pathMoveToAbsolute(350, 50); // Second corner $draw->pathLineToAbsolute(250, 150); // Third corner $draw->pathLineToAbsolute(350, 150); // End the path $draw->pathFinish(); // Render the draw commands $imagick->drawImage($draw); // Show the output $imagick->setImageFormat('png'); header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Referencia: https://www.php.net/manual/en/imagickdraw.pathlinetoabsolute.php