📜  PHP | imagickdraw setFontStyle()函数

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

PHP | imagickdraw setFontStyle()函数

ImagickDraw::setFontStyle()函数是PHP中的一个内置函数,用于设置使用文本注释时使用的字体样式。 AnyStyle 枚举充当通配符“不关心”选项。

句法:

bool ImagickDraw::setFontStyle( $style )

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

样式常量:

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

返回值:此函数不返回任何值。

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

方案一:

setFillColor('red');
  
// Set the Font Size
$draw->setFontSize(40);
  
// Set the Font Style
$draw->setFontStyle(\Imagick::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 Imagick object     
$imagick = new Imagick();
  
// Set the image dimension
$imagick->newImage(350, 300, '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();
?>

输出:
设置字体样式

方案二:

setFillColor('black');
  
// Set the font size
$draw->setFontSize(30);
  
// Set Font Style
$draw->setFontStyle(\Imagick::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 Imagick object     
$imagick = new Imagick();
  
// Set the image dimension
$imagick->newImage(350, 300, '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();
?>

输出:
设置字体样式

参考: http: PHP。 PHP