La función ImagickDraw::getStrokeWidth() es una función incorporada de PHP que se utiliza para devolver el ancho del trazo utilizado para dibujar los contornos de los objetos.
Sintaxis:
float ImagickDraw::getStrokeWidth( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve el ancho del trazo en caso de éxito.
Errores/Excepciones: Lanza una ImagickException en caso de error.
El siguiente programa ilustra la función ImagickDraw::getStrokeWidth() en PHP:
Programa:
<?php // Create an ImagickDraw object $draw = new \ImagickDraw(); // Set the Stroke Color $draw->setStrokeColor('Green'); // Set the Fill Color $draw->setFillColor('Red'); // Set the stroke opacity $draw->setStrokeOpacity(0.5); // Draw the rectangle $draw->rectangle(40, 30, 200, 260); // Set the stroke width $draw->setStrokeWidth(7); // Display the StrokeWidth echo $draw->getStrokeWidth(); ?>
Producción:
7
Referencia: http://php.net/manual/en/imagickdraw.getstrokewidth.php
Publicación traducida automáticamente
Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA