La función GmagickDraw::gettextencoding() es una función incorporada en PHP que se utiliza para obtener el conjunto de códigos utilizado para las anotaciones de texto. Estos conjuntos de códigos le dicen a la computadora cómo interpretar ceros y unos en caracteres reales. Por lo general, producen el mismo texto pero usan conjuntos de códigos diferentes.
Sintaxis:
string GmagickDraw::gettextencoding( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve un valor de string que contiene la codificación de texto utilizada.
Excepciones: esta función lanza GmagickDrawException en caso de error.
Los siguientes programas ilustran la función GmagickDraw::gettextencoding() en PHP:
Programa 1:
<?php // Create a new GmagickDraw object $draw = new GmagickDraw(); // Get the text encoding $textEncoding = $draw->gettextencoding(); echo $textEncoding; ?>
Producción:
// Empty string which is the default value
Programa 2:
<?php // Create a new GmagickDraw object $draw = new GmagickDraw(); // Set the text encoding $draw->settextencoding('utf-8'); // Get the text encoding $textEncoding = $draw->gettextencoding(); echo $textEncoding; ?>
Producción:
utf-8
Imagen usada:
Programa 3:
<?php // Create a new Gmagick object $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 font size $draw->setFontSize(40); // Set the fill color $draw->setfillcolor('white'); // Set the text encoding $draw->settextencoding('UTF-8'); // Annotate a text $draw->annotate(50, 50, 'This line is encoded with ' . $draw->getTextEncoding()); // Set the text encoding $draw->settextencoding('UTF-32'); // Annotate a text $draw->annotate(50, 100, 'This line is encoded with ' . $draw->getTextEncoding()); // 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.gettextencoding.php