La función ImagickDraw::getFillOpacity() es una función incorporada en PHP que se usa para obtener la opacidad utilizada al dibujar usando el color de relleno o la textura de relleno. Totalmente opaco es 1 y totalmente transparente es 0.
Sintaxis:
float ImagickDraw::getFillOpacity( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve un valor flotante que contiene la opacidad.
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función ImagickDraw::getFillOpacity() en PHP:
Programa 1:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Get the Fill Opacity $fillOpacity = $draw->getFillOpacity(); echo $fillOpacity; ?>
Producción:
1 // which is the default value.
Programa 2:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the Fill Opacity $draw->setFillOpacity(0.6); // Get the Fill Opacity $fillOpacity = $draw->getFillOpacity(); echo $fillOpacity; ?>
Producción:
0.6
Programa 3:
<?php // 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('yellow'); // Set the font size $draw->setFontSize(20); // Annotate a text $draw->annotation(50, 100, 'The fill opacity here is ' . $draw->getFillOpacity()); // Set the fill opacity $draw->setFillOpacity(0.4); // Annotate a text $draw->annotation(50, 200, 'The fill opacity here is ' . $draw->getFillOpacity()); // 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.getfillopacity.php