PHP | Función ImagickDraw pathCurveToQuadraticBezierSmoothAbsolute()

La función ImagickDraw::pathCurveToQuadraticBezierSmoothAbsolute() es una función incorporada en PHP que se usa para dibujar una curva Bezier cuadrática que es una curva paramétrica. Esta función puede continuar una curva desde una curva cuadrática suavemente.

Sintaxis:

bool ImagickDraw::pathCurveToQuadraticBezierSmoothAbsolute( 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 final
  • $y: especifica la coordenada y final

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::pathCurveToQuadraticBezierSmoothAbsolute() en PHP:

Programa 1:

<?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();
  
$draw->setFillColor('black');
  
// Set the stroke color
$draw->setStrokeColor('red');
  
// Draw curves to Quadratic Bezier Smooth Absolute (without pathClose())
$draw->pathStart();
$draw->pathCurveToQuadraticBezierSmoothAbsolute(3950, 250);
$draw->pathCurveToQuadraticBezierSmoothAbsolute(2950, 250);
$draw->pathCurveToQuadraticBezierSmoothAbsolute(390, 250);
$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();
  
$draw->setFillColor('black');
  
// Set the stroke color
$draw->setStrokeColor('yellow');
  
// Draw curves to Quadratic Bezier Smooth Absolute (with pathClose())
$draw->pathStart();
$draw->pathCurveToQuadraticBezierSmoothAbsolute(3950, 250);
$draw->pathCurveToQuadraticBezierSmoothAbsolute(950, 250);
$draw->pathCurveToQuadraticBezierSmoothAbsolute(2390, 250);
$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:

Referencia: https://www.php.net/manual/en/imagickdraw.pathcurvetoquadraticbeziersmoothabsolute.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 *