La función GmagickPixel::setcolor() es una función incorporada en PHP que se utiliza para establecer el color del objeto GmagickPixel.
Sintaxis:
GmagickPixel GmagickPixel::setcolor( string $color )
Parámetros: Esta función acepta un único parámetro $color que contiene el color.
Valor de retorno: esta función devuelve el objeto GmagickPixel en caso de éxito.
Excepciones: esta función lanza GmagickPixelException en caso de error.
Los siguientes programas ilustran la función GmagickPixel::setcolor() en PHP:
Programa 1:
<?php // Create a new gmagickPixel object $gmagickPixel = new GmagickPixel(); // Set the color $gmagickPixel->setColor('#428554'); // Get the color $color = $gmagickPixel->getColor(); print("<pre>".print_r($color, true)."</pre>"); ?>
Producción:
rgb(16962, 34181, 21588)
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 new GmagickPixel object $gmagickPixel = new GmagickPixel(); // Set the color $gmagickPixel->setcolor('blue'); // Create a GmagickDraw object $draw = new GmagickDraw(); // Set fill color using gmagickpixel $draw->setfillcolor($gmagickPixel); // Set the font size $draw->setfontsize(40); // Annotate a text $draw->annotate(50, 180, 'GeeksforGeeks'); // Use of drawimage function $gmagick->drawImage($draw); // Display the output image header("Content-Type: image/png"); echo $gmagick->getImageBlob(); ?>
Producción:
Referencia: https://www.php.net/manual/en/gmagickpixel.setcolor.php