La función ImagickDraw::setTextUnderColor() es una función incorporada en PHP que se usa para establecer el color de un rectángulo de fondo para colocar debajo de las anotaciones de texto.
Sintaxis:
bool ImagickDraw::setTextUnderColor( $under_color )
Parámetros: esta función acepta un único parámetro $under_color que se utiliza para contener el valor del color de fondo del texto.
Valor devuelto: esta función no devuelve ningún valor.
Los siguientes programas ilustran la función ImagickDraw::setTextUnderColor() en PHP:
Programa 1:
<?php // Create an ImagickDraw object $draw = new ImagickDraw(); // Set the image filled color $draw->setFillColor('white'); // Set the font size $draw->setFontSize(68); // Set the Text Under Color $draw->setTextUnderColor('green'); // Set the text to be added $draw->annotation(0, 190, "GeeksForGeeks"); // Set the font size $draw->setFontSize(40); // Set the text to be added $draw->annotation(120, 290, "@sarthak_ishu11"); // Create new Imagick object $imagick = new Imagick(); // Set the image dimensions $imagick->newImage(500, 400, 'lightgreen'); // Set the image format $imagick->setImageFormat("png"); // Draw the image $imagick->drawImage($draw); header("Content-Type: image/png"); // Display the image echo $imagick->getImageBlob(); ?>
Producción:
Programa 2:
<?php // Create an ImagickDraw object $draw = new ImagickDraw(); // Set the image filled color $draw->setFillColor('white'); // Set the font size $draw->setFontSize(68); // Set the text to be added $draw->annotation(0, 90, "GeeksForGeeks"); // Set the Text Under Color $draw->setTextUnderColor('blue'); // Set the text to be added $draw->annotation(0, 190, "GeeksForGeeks"); // Create new Imagick object $imagick = new Imagick(); // Set the image dimensions $imagick->newImage(500, 300, 'lightgreen'); // Set the image format $imagick->setImageFormat("png"); // Draw the image $imagick->drawImage($draw); header("Content-Type: image/png"); // Display the image echo $imagick->getImageBlob(); ?>
Producción:
Referencia: http://php.net/manual/en/imagickdraw.settextundercolor.php
Publicación traducida automáticamente
Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA