当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ImagickDraw setFontFamily()用法及代码示例


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

用法:

bool ImagickDraw::setFontFamily( $font_family )

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


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

以下示例程序旨在说明PHP中的ImagickDraw::setFontSize()函数:

程序1:

<?php 
  
// Create an ImagickDraw object  
$draw = new ImagickDraw(); 
  
// Set the image filled color 
$draw->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(); 
?>

输出:
setFontFamily

程序2:

<?php 
  
// Create an ImagickDraw object 
$draw = new ImagickDraw(); 
  
// set the image filled color 
$draw->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 iamge format 
$imagick->setImageFormat("png"); 
  
// Draw the image 
$imagick->drawImage($draw); 
header("Content-Type: image/png"); 
  
// Display the image 
echo $imagick->getImageBlob(); 
?>

输出:
setFontFamily

参考: http://php.net/manual/en/imagickdraw.setfontfamily.php



相关用法


注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | ImagickDraw setFontFamily() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。