📜  PHP | GmagickDraw getfont()函数

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

PHP | GmagickDraw getfont()函数

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

句法:

string GmagickDraw::getfont( void )

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

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

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

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

方案一:

getfont(); 
echo $font; 
?>

输出:

Empty string which is the default font.

使用图像:

方案二:

setFillColor('#0E0E0E');
  
// Draw rectangle for background
$draw->rectangle(-10, -10, 800, 400);
  
// Set the fill color
$draw->setFillColor('yellow');
  
// Set the font size
$draw->setFontSize(20);
  
// 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->annotate(50, 120, 'The Font here is '
    . $draw->getfont() . '.');
  
// Use of drawimage functeannotate
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/gmagickdraw.getfont。 PHP