PHP | Función ImagickDraw getFillOpacity()

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

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 *