📜  PHP | GmagickDraw getfontstyle()函数

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

PHP | GmagickDraw getfontstyle()函数

GmagickDraw::getfontstyle()函数是PHP中的一个内置函数,用于获取文本注释时使用的字体样式。

句法:

int GmagickDraw::getfontstyle( void )

参数:此函数不接受任何参数。

返回值:此函数返回一个对应于 STYLE 常量之一的整数值。
STYLE 常量列表如下:

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

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

下面给出的程序说明了PHP中的GmagickDraw::getfontstyle()函数

使用图像:

方案一:

getfontstyle(); 
echo $fontStyle; 
?> 

输出:

0 // Which is the default value.

方案 3:

setfontstyle(2);
    
// Get the font Style 
$fontStyle = $draw->getfontstyle(); 
echo $fontStyle; 
?> 

输出:

2

方案二:

setFillColor('#0E0E0E');
   
// Set the font size
$draw->setfontsize(40);
  
// Draw rectangle for background
$draw->rectangle(-10, -10, 800, 400);
  
// Set the fill color
$draw->setFillColor('white');
  
// Set the font style to Italic
$draw->setFontStyle(Gmagick::STYLE_ITALIC);
  
// Annotate a text
$draw->annotate(50, 100, 'The Font style here is '
    . $draw->getFontStyle() . '.');
  
// Use of drawimage functeannotate
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

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