当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ImagickDraw setTextEncoding()用法及代码示例


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

用法:

bool ImagickDraw::setTextEncoding( string $encoding_name )

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


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

异常:该函数在错误时引发ImagickException。

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

程序1:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Set the text encoding 
$draw->setTextEncoding('UTF-16'); 
  
// Get the text encoding 
$textEncoding = $draw->getTextEncoding(); 
echo $textEncoding; 
?>

输出:

UTF-16

程序2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Create a image on imagick object 
$imagick->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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickDraw setTextEncoding() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。