La función ImagickDraw::pathMoveToRelative() es una función incorporada en PHP que se usa para iniciar una nueva subruta en la coordenada dada usando coordenadas relativas. El punto actual se convierte entonces en la coordenada especificada. Esta función se utiliza para establecer las coordenadas iniciales antes de empezar a dibujar nada.
Sintaxis:
bool ImagickDraw::pathMoveToRelative( 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.
- $y: Especifica 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::pathMoveToRelative() 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 width $draw->setStrokeWidth(30); $draw->pathStart(); // Setting the stating point to (400, 100) $draw->pathMoveToRelative(400, 100); // Setting the end point to (500, 100) $draw->pathLineToHorizontalAbsolute(500); $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 stroke width $draw->setStrokeWidth(30); $draw->setFillColor('red'); $draw->pathStart(); // Setting the stating point to (400, 100), draw a rectangle $draw->pathMoveToRelative(400, 100); $draw->pathLineToAbsolute(400, 200); $draw->pathLineToAbsolute(300, 200); $draw->pathLineToAbsolute(300, 100); $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.pathmovetorelative.php