PHP | GmagickDraw settextencoding()函数
GmagickDraw::settextencoding()函数是PHP中的一个内置函数,用于设置用于文本注释的代码集。这些代码集告诉计算机如何将原始的 0 和 1 解释为真实字符。通常,它们产生相同的文本但使用不同的代码集。
句法:
GmagickDraw GmagickDraw::settextencoding( string $encoding )
参数:此函数接受一个包含编码的参数$ encoding。
返回值:此函数在成功时返回 GmagickDraw 对象。
异常:此函数在出错时抛出 GmagickDrawException。
下面给出的程序说明了PHP中的GmagickDraw::settextencoding()函数:
方案一:
settextencoding('utf-32');
// Get the encoding
$encoding = $draw->gettextencoding();
echo $encoding;
?>
输出:
utf-32
方案二:
rectangle(-100, -1000, 800, 400);
// Set the fill color
$draw->setfillcolor('white');
// Set the font size
$draw->setfontsize(30);
// Set the stroke color
$draw->setstrokecolor('green');
// Set the encoding
$draw->settextencoding('utf-8');
// Create a rectangle
$draw->annotate(20, 110, 'This text is encoded using ' . $draw->gettextencoding());
// Use of drawimage function
$gmagick->drawImage($draw);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
参考: https://www. PHP.net/manual/en/gmagickdraw.settextencoding。 PHP