PHP | Función GmagickDraw getfillcolor()

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

Sintaxis:

GmagickPixel GmagickDraw::getfillcolor( void )

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

Valor de retorno: esta función devuelve el color de relleno GmagickPixel utilizado para dibujar objetos rellenos.

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

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

Programa-1:

<?php 
// Create a new GmagickDraw object 
$draw = new GmagickDraw(); 
  
// Set the fill color
$draw->setfillcolor('blue');
    
// Get the fill color 
$colorPixel = $draw->getfillcolor(); 
$color = $colorPixel->getcolor();
echo $color; 
?> 

Producción:

rgb(0, 0, 65535)

Programa-2:

<?php
// Create a new Gmagick object
// https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png
$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('green');
  
// Set the font size
$draw->setFontSize(20);
  
// Annotate a text
$draw->annotate(50, 50, 'The fill color here is ' . $draw->getFillColor()->getcolor());
  
// Set the fill color
$draw->setFillColor('red');
  
// Annotate a text
$draw->annotate(50, 100, 'The fill color here is ' . $draw->getFillColor()->getcolor());
  
// Use of drawimage functeannotate
$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.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 *