The
GmagickDraw::settextencoding() function is an inbuilt function in PHP which is used to set the code set used for text annotations. These code sets tell the computer how to interpret raw zeroes and ones into real characters. Usually, they produce the same text but use different code sets.
Syntax:
GmagickDraw GmagickDraw::settextencoding( string $encoding )
Parameters:This function accepts a single parameter
$encoding which holds the encoding.
Return Value: This function returns GmagickDraw object on success.
Exceptions: This function throws GmagickDrawException on error.
Below given programs illustrate the
GmagickDraw::settextencoding() function in PHP:
Program 1:
Output:
utf-32
Program 2:
Output:
👁 Image
Reference: https://www.php.net/manual/en/gmagickdraw.settextencoding.php