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


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


ImagickDraw::getFont()函数是PHP中的一个内置函数,用于获取指定文本注释时使用的字体的字符串。

用法:

string ImagickDraw::getFont( void )

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


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

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

以下示例程序旨在说明PHP中的ImagickDraw::getFont()函数:

示例1:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Get the font 
$font = $draw->getFont(); 
echo $font; 
?>

输出:

Empty string which is the default font.

示例2:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Set the font to a font file name which 
// should be present in the same folder 
$draw->setFont('roboto.ttf'); 
  
// Get the font 
$font = $draw->getFont(); 
echo $font; 
?>

输出:

/home/user/php/roboto.ttf

示例3:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Create a image on imagick object 
$imagick->newImage(800, 250, 'yellow'); 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Set the font size 
$draw->setFontSize(30); 
  
// Annotate a text 
$draw->annotation(50, 100, 'The Font here is default.'); 
  
// Set the font to a ttf file which should be 
// placed in same folder where the program is. 
$draw->setFont('Pacifico.ttf'); 
  
// Annotate a text 
$draw->annotation(50, 200, 'The Font here is '
          . $draw->getFont() . '.'); 
  
// 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.getfont.php



相关用法


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