📜  PHP | imagickdraw setFontFamily()函数

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

PHP | imagickdraw setFontFamily()函数

ImagickDraw::setFontFamily()函数是PHP中的一个内置函数,用于设置在文本注释时使用的字体系列。

句法:

bool ImagickDraw::setFontFamily( $font_family )

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

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

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

方案一:

PHP
setFillColor('red');
 
// Set the Font size
$draw->setFontSize(40);
 
// Set the Font Family
$draw->setFontFamily('Ubuntu-Mono');
 
// Set the text to be added
$draw->annotation(30, 170, "GeeksForGeeks");
 
// Set the image filled color
$draw->setFillColor('green');
 
// Set the font size
$draw->setFontSize(30);
 
// Set the Font Family
$draw->setFontFamily('Open-Sans-Light-Italic');
 
// Set the text to be added
$draw->annotation(30, 250, "Ubuntu-Mono");
 
// Create new imagick object   
$imagick = new Imagick();
 
// Set the image dimension
$imagick->newImage(350, 300, 'white');
 
// Set the image formats
$imagick->setImageFormat("png");
 
// Draw the image
$imagick->drawImage($draw);
header("Content-Type: image/png");
 
// Display the image
echo $imagick->getImageBlob();
?>


PHP
setFillColor('Green');
 
// Set the font size
$draw->setFontSize(30);
 
// Set the Font Style
$draw->setFontFamily('Ani');
 
// Set the text to be added
$draw->annotation(30, 40, "GeeksForGeeks");
 
// Create new imagick object   
$imagick = new Imagick();
 
// Set the image dimension
$imagick->newImage(250, 70, 'white');
 
// Set the image format
$imagick->setImageFormat("png");
 
// Draw the image
$imagick->drawImage($draw);
header("Content-Type: image/png");
 
// Display the image
echo $imagick->getImageBlob();
?>


输出:

setFontFamily

方案二:

PHP

setFillColor('Green');
 
// Set the font size
$draw->setFontSize(30);
 
// Set the Font Style
$draw->setFontFamily('Ani');
 
// Set the text to be added
$draw->annotation(30, 40, "GeeksForGeeks");
 
// Create new imagick object   
$imagick = new Imagick();
 
// Set the image dimension
$imagick->newImage(250, 70, 'white');
 
// Set the image format
$imagick->setImageFormat("png");
 
// Draw the image
$imagick->drawImage($draw);
header("Content-Type: image/png");
 
// Display the image
echo $imagick->getImageBlob();
?>

输出:

setFontFamily

参考: http: PHP。 PHP