La función ImagickDraw::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 ImagickDraw::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 del texto.
Excepciones: esta función lanza ImagickException en caso de error.
Los programas dados a continuación ilustran la función ImagickDraw::getTextEncoding() en PHP:
Programa 1:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Get the text encoding $textEncoding = $draw->getTextEncoding(); echo $textEncoding; ?>
Producción:
// Empty string which is the default value
Programa 2:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the text encoding $draw->setTextEncoding('UTF-8'); // Get the text encoding $textEncoding = $draw->getTextEncoding(); echo $textEncoding; ?>
Producción:
UTF-8
Programa 3:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, 'white'); // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the font size $draw->setFontSize(40); // Set the text encoding $draw->setTextEncoding('UTF-8'); // Annotate a text $draw->annotation(50, 100, 'This line is encoded with ' . $draw->getTextEncoding()); // Set the text encoding $draw->setTextEncoding('UTF-32'); // Annotate a text $draw->annotation(50, 200, 'This line is encoded with ' . $draw->getTextEncoding()); // 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.gettextencoding.php