La función ImagickDraw::setTextEncoding() es una función incorporada en PHP que se utiliza para establecer 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:
bool ImagickDraw::setTextEncoding( string $encoding_name )
Parámetros: esta función acepta un solo parámetro $encoding_name que contiene el nombre del conjunto de códigos.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función ImagickDraw::setTextEncoding() en PHP:
Programa 1:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the text encoding $draw->setTextEncoding('UTF-16'); // Get the text encoding $textEncoding = $draw->getTextEncoding(); echo $textEncoding; ?>
Producción:
UTF-16
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, 'black'); // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the fill color $draw->setFillColor('skyblue'); // Set the font size $draw->setFontSize(40); // Set the text encoding $draw->setTextEncoding('UTF-8'); // Annotate a text $draw->annotation(50, 150, 'This text is encoded in UTF-8.'); // 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.settextencoding.php