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()函数:
程序1:
<?php
// Create an GmagickDraw object
$draw = new GmagickDraw ();
// Set the image filled color
$draw->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();
?>
输出:
程序2:
<?php
// Create an GmagickDraw object
$draw = new GmagickDraw ();
// Set the image filled color
$draw->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.net/manual/en/gmagickdraw.settextdecoration.php
相关用法
- PHP ImagickDraw setTextDecoration()用法及代码示例
- PHP GmagickDraw arc()用法及代码示例
- PHP GmagickDraw polygon()用法及代码示例
- PHP GmagickDraw annotate()用法及代码示例
- PHP GmagickDraw getfillopacity()用法及代码示例
- PHP GmagickDraw getfontstyle()用法及代码示例
- PHP GmagickDraw polyline()用法及代码示例
- PHP GmagickDraw getfont()用法及代码示例
- PHP GmagickDraw getfontweight()用法及代码示例
- PHP GmagickDraw getstrokecolor()用法及代码示例
- PHP GmagickDraw rotate()用法及代码示例
- PHP GmagickDraw gettextdecoration()用法及代码示例
- PHP GmagickDraw getfontsize()用法及代码示例
- PHP GmagickDraw setfontsize()用法及代码示例
- PHP GmagickDraw line()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | GmagickDraw settextdecoration() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。