La función ImagickDraw::getStrokeDashArray() es una función incorporada en PHP que se usa para obtener una array que representa el patrón de guiones y espacios que se usan para trazar rutas.
Sintaxis:
array ImagickDraw::getStrokeDashArray( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve una array que contiene un trazo en caso de éxito y una array vacía si no está configurada.
Los siguientes programas ilustran la función ImagickDraw::getStrokeDashArray() en PHP:
Programa 1:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Get the stroke dash array $array = $draw->getStrokeDashArray(); print("<pre>".print_r($array, true)."</pre>"); ?>
Producción:
Array // Empty array which is the default value ( )
Programa 2:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the stroke dash array $draw->setStrokeDashArray([20, 5, 20, 5, 5, 5, ]); // Get the stroke dash array $array = $draw->getStrokeDashArray(); print("<pre>".print_r($array, true)."</pre>"); ?>
Producción:
Array ( [0] => 20 [1] => 5 [2] => 20 [3] => 5 [4] => 5 [5] => 5 )
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('red'); // Set the font size $draw->setFontSize(15); // Draw a rectangle $draw->rectangle(100, 50, 225, 175); // Annotate a text $draw->annotation(50, 200, 'The strokeDashArray here is default'); // Set the stroke dash array $draw->setStrokeDashArray([20, 5, 19, 15, 5, 15, ]); // Draw a rectangle $draw->rectangle(500, 50, 625, 175); // Get the stroke dash array $strokeDashArray = $draw->getStrokeDashArray(); // Annotate a text $draw->annotation(450, 200, 'The strokeDashArray here is ' . implode(" ", $strokeDashArray)); // 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.getstrokedasharray.php