PHP | Función ImagickDraw getFillColor()

La función ImagickDraw::getFillColor() es una función incorporada en PHP que se utiliza para obtener el color de relleno utilizado para dibujar objetos rellenos.

Sintaxis:

ImagickPixel ImagickDraw::getFillColor( void )

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

Valor devuelto: esta función devuelve un valor de ImagickPixel que contiene el color de relleno.

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

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

Programa 1:

<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Get the Fill Color
$colorPixel = $draw->getFillColor();
  
// Convert ImagickPixel into string
$color = $colorPixel->getColorAsString();
echo $color;
?>

Producción:

srgb(0, 0, 0) // which is black the default color.

Programa 2:

<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Set the Fill Color
$draw->setFillColor('purple');
  
// Get the Fill Color
$colorPixel = $draw->getFillColor();
  
// Convert ImagickPixel into string
$color = $colorPixel->getColorAsString();
echo $color;
?>

Producción:

srgb(128, 0, 128)

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('cyan');
  
// Set the font size
$draw->setFontSize(20);
  
// Annotate a text
$draw->annotation(50, 100, 'The fill color here is ' 
               . $draw->getFillColor()->getColorAsString());
  
// Set the fill color
$draw->setFillColor('red');
  
// Annotate a text
$draw->annotation(50, 200, 'The fill color here is ' 
               . $draw->getFillColor()->getColorAsString());
  
// 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.getfillcolor.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 *