📜  PHP | imagickdraw setTextDecoration()函数

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

PHP | imagickdraw setTextDecoration()函数

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

句法:

bool ImagickDraw::setTextDecoration( $decoration )

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

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

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

下面的程序说明了PHP中的ImagickDraw::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 Imagick Object
$imagick = new Imagick();
  
// Set image dimensions
$imagick->newImage(500, 160, '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('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 Imagick Object 
$imagick = new Imagick();
  
// Set the image dimensions
$imagick->newImage(500, 160, 'black');
  
// 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