PHP | Función ImagickDraw setFillAlpha()

La función ImagickDraw::setFillAlpha() es una función incorporada en PHP que se usa para establecer la opacidad que se usará al dibujar usando el color de relleno o la textura de relleno.

Sintaxis:

bool ImagickDraw::setFillAlpha( float $opacity )

Parámetros: Esta función acepta un solo parámetro $opacity que contiene la opacidad del color donde 1 significa opaco y 0 significa transparente.

Valor de retorno: esta función devuelve VERDADERO en caso de éxito.

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

Los siguientes programas ilustran la función ImagickDraw::setFillAlpha() en PHP:

Programa 1:

<?php
  
// Create a new imagick object
$imagick = new Imagick();
  
// Create a image on imagick object
$imagick->newImage(800, 250, 'white');
  
// Create a new imagickDraw object
$draw = new ImagickDraw();
  
// Set the color to green
$draw->setFillColor('green');
  
// Set the opacity
$draw->setFillAlpha(0.3);
  
// Set the font size
$draw->setFontSize(80);
  
// Annotate a text
$draw->annotation(100, 150, 'GeeksforGeeks');
  
// Render the draw commands
$imagick->drawImage($draw);
  
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

Producción:

Programa 2:

<?php
  
// Create a new imagick object
$imagick = new Imagick();
  
// Create a image on imagick object
$imagick->newImage(800, 250, 'white');
  
// Create a new imagickDraw object
$draw = new ImagickDraw();
  
// Set the color to green
$draw->setFillColor('green');
  
// Set the opacity
$draw->setFillAlpha(0.3);
  
// Draw a circle
$draw->circle(300, 200, 230, 20);
  
// Set the color to red
$draw->setFillColor('red');
  
// Set the opacity
$draw->setFillAlpha(0.5);
  
// Draw a rectangle
$draw->rectangle(200, 300, 20, 100);
  
// 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.setfillalpha.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 *