📜  PHP | GmagickDraw settextdecoration()函数

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

PHP | GmagickDraw settextdecoration()函数

GmagickDraw ::settextdecoration()函数是PHP中的一个内置函数,用于指定在使用文本注释时要应用的装饰。

句法:

public GmagickDraw::settextdecoration( $decoration ) : GmagickDraw

参数:此函数接受单个参数$decoration ,用于保存 DECORATION_ 常量的值。
DECORATION_ 常量列表如下:

  • Gmagick ::DECORATION_NO(整数)
  • Gmagick ::DECORATION_UNDERLINE(整数)
  • Gmagick ::DECORATION_OVERLINE(整数)
  • Gmagick ::DECORATION_LINETROUGH(整数)

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

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

方案一:

setFillColor('green');
  
// Set the font size
$draw->setFontSize(60);
  
// Set the Text Decoration
$draw->setTextDecoration(4);
  
// Set the text to be added
$draw->annotation(50, 75, "GeeksForGeeks");
   
// Create new Gmagick Object
$gmagick = new Gmagick ();
  
// Set image dimensions
$gmagick ->newImage(500, 160, '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();
?>

输出:
设置文本装饰

方案二:

setFillColor('yellow');
  
// Set the font size
$draw->setFontSize(20);
  
// Set the TextDecoration() function
// Text is Upperline
$draw->setTextDecoration(3);
// Set the text to be added
$draw->annotation(50, 75, "A Computer Science Portal For Geeks!");
  
// Create new Gmagick Object 
$gmagick = new Gmagick ();
  
// Set the image dimensions
$gmagick ->newImage(500, 160, 'black');
  
// Set the image format
$gmagick ->setImageFormat("png");
  
// Draw the image
$gmagick ->drawImage($draw);
header("Content-Type: image/png");
  
// Display the image
echo $gmagick ->getImageBlob();
?>

输出:
设置文本装饰

参考: http: PHP。 PHP