PHP | GmagickDraw gettextencoding()函数
GmagickDraw::gettextencoding()函数是PHP中的一个内置函数,用于获取用于文本注释的代码集。这些代码集告诉计算机如何将原始的 0 和 1 解释为真实字符。通常,它们产生相同的文本但使用不同的代码集。
句法:
string GmagickDraw::gettextencoding( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个字符串值,其中包含使用的文本编码。
异常:此函数在出错时抛出 GmagickDrawException。
下面给出的程序说明了PHP中的GmagickDraw::gettextencoding()函数:
方案一:
gettextencoding();
echo $textEncoding;
?>
输出:
// Empty string which is the default value
方案二:
settextencoding('utf-8');
// Get the text encoding
$textEncoding = $draw->gettextencoding();
echo $textEncoding;
?>
输出:
utf-8
使用图像:
方案 3:
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();
?>
输出:
参考: https://www. PHP.net/manual/en/gmagickdraw.gettextencoding。 PHP