📜  PHP | imagickdraw setTextEncoding()函数

📅  最后修改于: 2022-05-13 01:56:45.917000             🧑  作者: Mango

PHP | imagickdraw setTextEncoding()函数

ImagickDraw::setTextEncoding()函数是PHP中的一个内置函数,用于设置用于文本注释的代码集。这些代码集告诉计算机如何将原始的 0 和 1 解释为真实字符。通常,它们产生相同的文本但使用不同的代码集。

句法:

bool ImagickDraw::setTextEncoding( string $encoding_name )

参数:此函数接受单个参数$encoding_name ,其中包含代码集的名称。

返回值:此函数在成功时返回 TRUE。

异常:此函数在出错时抛出 ImagickException。

下面给出的程序说明了PHP中的ImagickDraw::setTextEncoding()函数

方案一:

setTextEncoding('UTF-16');
  
// Get the text encoding
$textEncoding = $draw->getTextEncoding();
echo $textEncoding;
?>

输出:

UTF-16

方案二:

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();
?>

输出:

参考: https://www. PHP.net/manual/en/imagickdraw.settextencoding。 PHP