PHP | imagickdraw getTextEncoding()函数
ImagickDraw::getTextEncoding()函数是PHP中的一个内置函数,用于获取用于文本注释的代码集。这些代码集告诉计算机如何将原始的 0 和 1 解释为真实字符。通常,它们产生相同的文本但使用不同的代码集。
句法:
string ImagickDraw::getTextEncoding( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个包含文本编码的字符串值。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::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:
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();
?>
输出:
参考: https://www. PHP.net/manual/en/imagickdraw.gettextencoding。 PHP