La función ImagickDraw::pathLineToVerticalRelative() es una función incorporada en PHP que se usa para dibujar una ruta de línea vertical desde el punto actual hasta el punto objetivo usando coordenadas relativas. El punto objetivo se convierte entonces en el nuevo punto actual.
Sintaxis:
bool ImagickDraw::pathLineToVerticalRelative( float $y )
Parámetros: esta función acepta un solo parámetro $y que contiene la coordenada y.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función ImagickDraw::pathLineToVerticalRelative() 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 stroke color $draw->setStrokeColor('blue'); // Set the stroke width $draw->setStrokeWidth(5); // Draw line using pathLineToVerticalRelative $draw->pathStart(); $draw->pathMoveToRelative(400, 0); $draw->pathLineToVerticalRelative(1000); $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(); $color = ['blue', 'red', 'green', 'yellow', 'orange', 'brown', 'pink']; // Set the stroke width $draw->setStrokeWidth(5); // Draw lines for ($x = 0; $x < 20; $x++) { $draw->setStrokeColor($color[$x % 7]); $draw->pathStart(); $draw->pathMoveToRelative($x * 40, 0); $draw->pathLineToVerticalRelative(800); $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.pathlinetoverticalrelative.php