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


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


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

用法:

string ImagickDraw::getTextEncoding( void )

参数:此函数不接受任何参数。


返回值:此函数返回包含文本编码的字符串值。

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

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

示例1:

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

输出:

// Empty string which is the default value

示例2:

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

输出:

UTF-8

示例3:

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



相关用法


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