Gmagick::annotateImage()函数是PHP中的内置函数,用于用文本注释图像。成功时此函数返回True。
用法:
Gmagick Gmagick::annotateimage( $GmagickDraw, $x, $y, $angle, $text )
参数:该函数接受上述和以下所述的五个参数:
- $GmagickDraw:此参数用于创建GmagickDraw对象,该对象包含用于绘制文本的设置。
- $x:此参数设置为文本左侧的水平偏移量(以像素为单位)。
- $y:此参数设置为相对于文本基线的垂直偏移(以像素为单位)。
- $angle:书写文字的角度。
- $text:需要绘制的字符串。
返回值:该函数返回带有注释的Gmagick对象。
以下示例程序旨在说明PHP中的Gmagick::annotateImage()函数:
示例1:
<?php
/* Create some objects */
$image = new Gmagick();
$draw = new GmagickDraw();
$pixel = new GmagickPixel('white');
/* New image */
$image->newImage(800, 300, $pixel);
/* Black text */
$draw->setFillColor('green');
/* Font properties */
$draw->setFont('Bookman-DemiItalic');
$draw->setFontSize( 30 );
/* Create text */
$image->annotateImage($draw, 30, 140, 0,
'GeeksforGeeks: A computer science portal');
/* Give image a format */
$image->setImageFormat('png');
/* Output the image with headers */
header('Content-type: image/png');
echo $image;
?>
输出:
示例2:
<?php
/* Create some objects */
$image = new Gmagick();
$draw = new GmagickDraw();
$image = new Gmagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
/* Black text */
$draw->setFillColor('green');
/* Font properties */
$draw->setFont('Bookman-DemiItalic');
$draw->setFontSize( 30 );
/* Create text */
$image->annotateImage($draw, 5, 120, 0,
'GeeksforGeeks: A computer science portal');
/* Give image a format */
$image->setImageFormat('png');
/* Output the image with headers */
header('Content-type: image/png');
echo $image;
?>
输出:
参考: http://php.net/manual/en/gmagick.annotateimage.php
相关用法
- PHP Imagick annotateImage()用法及代码示例
- PHP Gmagick borderImage()用法及代码示例
- PHP Gmagick medianfilterimage()用法及代码示例
- PHP Gmagick getImageDispose()用法及代码示例
- PHP Gmagick embossimage()用法及代码示例
- PHP Gmagick commentImage()用法及代码示例
- PHP Gmagick blurimage()用法及代码示例
- PHP Gmagick setimagecolorspace()用法及代码示例
- PHP Gmagick getImageMatte()用法及代码示例
- PHP Gmagick write()用法及代码示例
- PHP Gmagick getimageformat()用法及代码示例
- PHP Gmagick setImageDispose()用法及代码示例
- PHP Gmagick implodeimage()用法及代码示例
- PHP Gmagick flipimage()用法及代码示例
- PHP Gmagick labelimage()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | Gmagick annotateImage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。