PHP | Función ImagickDraw setStrokeDashOffset()

La función ImagickDraw::setStrokeDashOffset() es una función incorporada en PHP que se utiliza para establecer el desplazamiento en el patrón de guión para iniciar el guión.

Sintaxis:

bool ImagickDraw::setStrokeDashOffset( float $dash_offset )

Parámetros: esta función acepta un único parámetro $dash_offset que contiene el desplazamiento del guión.

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

Programa 1:

<?php
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
   
// Set the stroke dash offset
$draw->setStrokeDashOffset(5);
   
// Get the stroke dash offset
$offset = $draw->getStrokeDashOffset();
echo $offset;
?>

Producción:

5

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, '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 dash array
$draw->setStrokeDashArray([15, 5, 15]);
  
// Set the stroke dash offset
$draw->setStrokeDashOffset(20);
    
// Draw a circle using ellipse function
$draw->ellipse(400, 100, 70, 70, 60, 900);
  
// 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.setstrokedashoffset.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 *