📜  PHP | GmagickDraw setfont()函数

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

PHP | GmagickDraw setfont()函数

GmagickDraw::setfont()函数是PHP中的一个内置函数,用于设置在文本注释时使用的完全指定的字体。

句法:

GmagickDraw GmagickDraw::setfont( string $font )

参数:此函数接受单个参数$font ,该参数用于将字体名称的值保存为字符串。

返回值:此函数在成功时返回 GmagickDraw 对象。

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

下面给出的程序说明了PHP中的GmagickDraw::setfont()函数
方案一:

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

输出:

/home/user/php/roboto.ttf

方案二:

rectangle(-100, -1000, 800, 400);
  
// Set the font size
$draw->setfontsize(90);
  
// Set the stroke color
$draw->setstrokecolor('red');
  
// Set the font
$draw->setfont('Pacifico.ttf');
  
// Create a rectangle
$draw->annotate(20, 110, 'GeeksforGeeks');
  
// Use of drawimage function
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

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