PHP | Función ImagickDraw getStrokeLineCap()

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

Sintaxis:

int ImagickDraw::getStrokeLineCap( void )

Parámetros: Esta función no acepta ningún parámetro.

Valor de retorno: esta función devuelve 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)

Excepciones: esta función lanza ImagickException en caso de error.

Los siguientes programas ilustran la función ImagickDraw::getStrokeLineCap() en PHP:

Programa 1:

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

Producción:

1 // Which corresponds to imagick::LINECAP_BUTT

Programa 2:

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

Producción:

3 // Which corresponds to imagick::LINECAP_SQUARE

Programa 3:

<?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, 'black');
    
// Create a new ImagickDraw object
$draw = new ImagickDraw();
    
// Set the fill color
$draw->setFillColor('black');
    
// Set the color of stroke
$draw->setStrokeColor('white');
  
// Set the stroke width
$draw->setStrokeWidth(3);
    
// Set the font size
$draw->setFontSize(25);
   
 // Set the stroke dash array
$draw->setStrokeDashArray([20, 5, 19, 15, 5, 15]);
   
// Draw a rectangle
$draw->rectangle(100, 50, 225, 175);
    
// Annotate a text
$draw->annotation(10, 220, 'The strokeLineCap here is '
         . $draw->getStrokeLineCap());
   
// Set the stroke line cap
$draw->setStrokeLineCap(2);
    
// Draw a rectangle
$draw->rectangle(500, 50, 625, 175);
    
// Annotate a text
$draw->annotation(400, 220, 'The strokeLineCap here is '
         . $draw->getStrokeLineCap());
    
// 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.getstrokelinecap.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 *