PHP | Función ImagickDraw pathLineToHorizontalAbsolute()

La función ImagickDraw::pathLineToHorizontalAbsolute() es una función incorporada en PHP que se usa para dibujar una ruta de línea horizontal desde el punto actual hasta el punto objetivo usando coordenadas absolutas. El punto objetivo se convierte entonces en el nuevo punto actual. El punto actual también se puede configurar alternativamente con la función pathMoveToRelative() .

Sintaxis:

bool ImagickDraw::pathLineToHorizontalAbsolute( float $x )

Parámetros: esta función acepta un solo parámetro $x que contiene la coordenada x.

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::pathLineToHorizontalAbsolute() 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 pathLineToHorizontalAbsolute
$draw->pathStart();
$draw->pathMoveToRelative(0, 100);
$draw->pathLineToHorizontalAbsolute(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();
  
// Set the stroke color
$draw->setStrokeColor('black');
  
// Set the stroke width
$draw->setStrokeWidth(5);
   
// Draw lines
$draw->pathStart();
for($x = 0; $x < 15; $x++) {
    $draw->pathMoveToRelative(0, 20);
    if($x % 2) {
        $draw->pathLineToHorizontalAbsolute(0);
    } else {
        $draw->pathLineToHorizontalAbsolute(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:

Referencia: https://www.php.net/manual/en/imagickdraw.pathlinetohorizontalabsolute.php

Publicación traducida automáticamente

Artículo escrito por gurrrung y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *