📜  PHP |想象一下 setFont()函数

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

PHP |想象一下 setFont()函数

Imagick::setFont()函数是PHP中的一个内置函数,用于设置字体。

句法:

bool Imagick::setFont( string $font )

参数:此函数接受单个参数$font ,其中包含字体文件的名称。

返回值:此函数在成功时返回 TRUE。

扩展:此函数需要安装GD扩展。

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

方案一:

setFont('Windsong.ttf'); 
  
// Write a caption in image format
$imagick->newPseudoImage(800, 350, "caption:GeekforGeeks");
  
// Show the output
$imagick->setformat('png');
  
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

输出:

方案二:

setFont('FFF_Tusj.ttf'); 
  
// Write the caption in a image
$imagick->newPseudoImage(800, 350, "caption:GeekforGeeks");
  
// Show the output
$imagick->setformat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

输出:

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