PHP | Función ImagickDraw setStrokeLineCap()

La función ImagickDraw::setStrokeLineCap() es una función incorporada en PHP que se utiliza para establecer la forma que se utilizará al final de los subtrayectos abiertos cuando se trazan.

Sintaxis:

bool ImagickDraw::setStrokeLineCap( int $linecap )

Parámetros: esta función acepta un solo parámetro $linecap que contiene un valor entero correspondiente a una de las constantes LINECAP .

La lista de constantes LINECAP se proporciona a continuación:

  • imagick::LINECAP_UNDEFINED (0)
  • imagick::LINECAP_BUTT (1)
  • imagick::LINECAP_ROUND (2)
  • imagick::LINECAP_SQUARE (3)

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

Programa 1:

<?php
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
    
// Set the stroke line cap
$draw->setStrokeLineCap(2);
  
// Get the stroke line cap
$lineCap = $draw->getStrokeLineCap();
echo $lineCap;
?>

Producción:

2 // Which corresponds to imagick::LINECAP_ROUND

Programa 2:

<?php
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
    
// Create a new imagick object
$imagick = new Imagick();
    
// Create a image on imagick object
$imagick->newImage(800, 250, 'grey');
    
// Create a new ImagickDraw object
$draw = new ImagickDraw();
    
// Set the color of stroke
$draw->setStrokeColor('red');
  
// Set stroke width
$draw->setStrokeWidth(3);
    
// Set the font size
$draw->setFontSize(25);
   
 // Set the stroke dash array
$draw->setStrokeDashArray([20]);
  
// Set the stroke line cap
$draw->setStrokeLineCap(3);
    
// Draw a circle
$draw->circle(250, 150, 330, 130);
  
// 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.setstrokelinecap.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 *