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


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


ImagickDraw::getFontFamily()函数是PHP中的一个内置函数,用于获取在对文本进行注释时要使用的字体系列。它说明了要使用的文本的特定大小和样式,并且有很多font-families可用,例如Times,AvantGarde,NewCenturySchlbk,Palatino等。

用法:

string ImagickDraw::getFontFamily( void )

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


返回值:此函数返回包含字体系列名称的字符串值。

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

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

程序1:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Set the font 
$draw->setFontFamily("Palatino"); 
  
// Get the font 
$font = $draw->getFontFamily(); 
echo $font; 
?>

输出:

Palatino

程序2:

<?php 
   
// Create a new imagick object 
$imagick = new Imagick(); 
   
// Create a image on imagick object 
$imagick->newImage(800, 250, 'grey'); 
   
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
   
// Set the font size 
$draw->setFontSize(50); 
   
// Annotate a text 
$draw->annotation(50, 100,  
          'The Font Family here is default.'); 
   
// Set the font family 
$draw->setFontFamily("sans-sarif"); 
   
// Set the font size 
$draw->setFontSize(50); 
   
// Annotate a text 
$draw->annotation(50, 200,  
                  'The Font Family here is ' 
                  . $draw->getFontFamily() . '.'); 
   
// 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.getfontfamily.php



相关用法


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