La función ImagickDraw::pathLineToRelative() 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 relativas. Entonces la coordenada se convierte en el nuevo punto actual. El punto inicial se puede establecer mediante la función pathMoveToRelative() .
Sintaxis:
bool ImagickDraw::pathLineToRelative( 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::pathLineToRelative() 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(); // Draw a line // Start coordinates of line $draw->pathMoveToRelative(350, 50); // End coordinates of line $draw->pathLineToRelative(50, 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('yellow'); // Set the stroke color $draw->setStrokeColor('black'); // Set the stroke width $draw->setStrokeWidth(1); // Create a path $draw->pathStart(); // Draw a star $draw->pathMoveToRelative(350, 20); $draw->pathLineToRelative(40, 60); $draw->pathLineToRelative(80, 20); $draw->pathLineToRelative(-80, 30); $draw->pathLineToRelative(30, 60); $draw->pathLineToRelative(-50, -20); $draw->pathLineToRelative(-50, 40); $draw->pathLineToRelative(10, -70); $draw->pathLineToRelative(-50, -10); $draw->pathLineToRelative(50, -30); $draw->pathLineToRelative(20, -80); // 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.pathlinetorelative.php