PHP | Función ImagickDraw pathCurveToAbsolute()

La función ImagickDraw::pathCurveToAbsolute() es una función incorporada en PHP que se usa para dibujar una curva Bezier cúbica que es una curva paramétrica. Esta función dibuja una curva desde el punto actual hasta (x, y) utilizando el punto de control inicial (x1, y1) hasta el punto de control final (x2, y2). En el último comando, el nuevo punto actual se convierte en el último par de coordenadas (x, y) utilizado en el polibezier.

Sintaxis:

bool ImagickDraw::pathCurveToAbsolute( float $x1, float $y1,
                            float $x2, float $y2, float $x, float $y )

Parámetros: esta función acepta seis parámetros, como se mencionó anteriormente y se describe a continuación:

  • $x1: Especifica la coordenada x del primer punto de control.
  • $y1: Especifica la coordenada y del primer punto de control.
  • $x2: Especifica la coordenada x del segundo punto de control.
  • $y2: Especifica la coordenada y del segundo punto de control.
  • $x: Especifica la coordenada x del final de la curva.
  • $y: especifica la coordenada y del final de la curva.

Valor de retorno: esta función devuelve VERDADERO en caso de éxito.

Los siguientes programas ilustran la función ImagickDraw::pathCurveToAbsolute() 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();
  
$draw->setFillColor('white');
  
// Set the stroke color
$draw->setStrokeColor('green');
  
// Set the stroke width
$draw->setStrokeWidth(5);
  
// Start a path
$draw->pathStart();
$draw->pathCurveToAbsolute(50, 100, 180, 200, 1360, 200);
$draw->pathFinish();
  
// Set the stroke color
$draw->setStrokeColor('red');
  
// Draw curve to absolute (with pathClose())
$draw->pathStart();
$draw->pathCurveToAbsolute(500, 20, 80, 40, 60, 900);
$draw->pathClose();
$draw->pathFinish();
  
// Set the stroke color
$draw->setStrokeColor('blue');
  
// Draw curve to absolute (with pathClose())
$draw->pathStart();
$draw->pathCurveToAbsolute(50, 50, 80, 20, 1360, 200);
$draw->pathClose();
$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, 'black');
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Set the stroke color
$draw->setStrokeColor('white');
  
// Set the stroke width
$draw->setStrokeWidth(5);
  
// Start a path
$draw->pathStart();
  
// Draw curve to absolute
$draw->pathCurveToAbsolute(50, 400, 560, 700, 160, 20);
$draw->pathCurveToAbsolute(1000, 40, 560, 70, 60, 300);
  
// Close 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.pathcurvetoabsolute.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 *