La función ImagickDraw::getStrokeOpacity() es una función incorporada en PHP que se usa para devolver la opacidad de los contornos de objetos trazados.
Sintaxis:
float ImagickDraw::getStrokeOpacity( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve la opacidad del trazo en caso de éxito.
Errores/Excepciones: Lanza una ImagickException en caso de error.
El siguiente programa ilustra la función ImagickDraw::getStrokeOpacity() 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 width $draw->setStrokeWidth(7); // Draw the rectangle $draw->rectangle(40, 30, 200, 260); // Set the stroke opacity $draw->setStrokeOpacity(0.5); // Display the StrokeOpacity echo $draw->getStrokeOpacity(); ?>
Producción:
0.49999237048905
Referencia: http://php.net/manual/en/imagickdraw.getstrokeopacity.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