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


PHP GmagickDraw setfontstyle()用法及代码示例


GmagickDraw::setfontstyle()函数是PHP中的内置函数,用于设置在文本注释时使用的字体样式。样式枚举充当wild-card无关项。

用法:

 public GmagickDraw::setfontstyle( $style ) : GmagickDraw

参数:该函数接受单个参数$style,该参数用于将字体样式的值保存为整数类型。


STYLE常量:样式常量的列表如下:

  • Gmagick::STYLE_NORMAL(整数)
  • Gmagick::STYLE_ITALIC(整数)
  • Gmagick::STYLE_OBLIQUE(整数)
  • Gmagick::STYLE_ANY(整数)

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

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

程序1:

<?php 
  
// Create an GmagickDraw object 
$draw = new GmagickDraw(); 
  
// Set the image filled color 
$draw->setFillColor('red'); 
  
// Set the Font Size 
$draw->setFontSize(40); 
  
// Set the Font Style 
$draw->setfontstyle(\Gmagick::STYLE_OBLIQUE); 
  
// 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 text to be added 
$draw->annotation(30, 250, "Oblique Style"); 
  
// Create new Gmagick object      
$gmagick= new Gmagick(); 
  
// Set the image dimension 
$gmagick->newImage(350, 300, 'white'); 
  
// Set the image format 
$gmagick->setImageFormat("png"); 
  
// Draw the image 
$gmagick->drawImage($draw); 
header("Content-Type: image/png"); 
  
// Display the image 
echo $gmagick->getImageBlob(); 
?>

输出:
setFontStyle

程序2:

<?php 
  
// Create an GmagickDraw object 
$draw = new GmagickDraw(); 
  
// Set the image filled color 
$draw->setFillColor('black'); 
  
// Set the font size 
$draw->setFontSize(30); 
  
// Set Font Style 
$draw->setfontstyle(\Gmagick::STYLE_ITALIC); 
  
// Set the text to be added 
$draw->annotation(30, 170, "GeeksForGeeks"); 
  
// Set the image filled color 
$draw->setFillColor('blue'); 
  
// Set the font size 
$draw->setFontSize(25); 
  
// Set the text to be added 
$draw->annotation(30, 250, "Italic Style"); 
  
// Create new Gmagick object      
$gmagick= new Gmagick(); 
  
// Set the image dimension 
$gmagick->newImage(350, 300, 'white'); 
  
// Set the image format 
$gmagick->setImageFormat("png"); 
  
// Draw the image 
$gmagick->drawImage($draw); 
header("Content-Type: image/png"); 
  
// Display the image 
echo $gmagick->getImageBlob(); 
?>

输出:
setFontStyle

参考: http://php.net/manual/en/gmagickdraw.setfontstyle.php



相关用法


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