📜  PHP | ImagickDraw getFont()函数

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

PHP | ImagickDraw getFont()函数

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

句法:

string ImagickDraw::getFont( void )

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

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

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

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

方案一:

getFont();
echo $font;
?>

输出:

Empty string which is the default font.

方案二:

setFont('roboto.ttf');
  
// Get the font
$font = $draw->getFont();
echo $font;
?>

输出:

/home/user/php/roboto.ttf

方案 3:

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