PHP | Función GmagickDraw getfillopacity()

La función GmagickDraw::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 GmagickDraw::getfillopacity( void )

Parámetros: Esta función no acepta ningún parámetro.

Valor devuelto: esta función devuelve un valor flotante que contiene la opacidad.

Excepciones: esta función lanza GmagickDrawException en caso de error.

Los siguientes programas ilustran la función GmagickDraw::getfillopacity() en PHP:

Imagen usada:

Programa 1:

<?php 
  
// Create a new GmagickDraw object 
$draw = new GmagickDraw(); 
    
// Get the Fill Opacity 
$fillOpacity = $draw->getfillopacity(); 
echo $fillOpacity; 
?> 

Producción:

0 // Which is the default value

Programa 2:

<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
  
// Create a GmagickDraw object
$draw = new GmagickDraw();
  
// Set the color
$draw->setFillColor('#0E0E0E');
  
// Draw rectangle for background
$draw->rectangle(-10, -10, 800, 400);
  
// Set the fill color
$draw->setFillColor('yellow');
  
// Set the font size
$draw->setFontSize(20);
  
// Set the fill opacity
$draw->setfillopacity(1);
  
// Annotate a text
$draw->annotate(50, 30, 'The fill opacity here is '
    . $draw->getfillopacity());
  
// Set the fill opacity
$draw->setfillopacity(0.5);
  
// Annotate a text
$draw->annotate(50, 100, 'The fill opacity here is '
    . $draw->getfillopacity());
  
// Draw the image
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

Producción:

Referencia: https://www.php.net/manual/en/gmagickdraw.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 *