当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ImagickDraw comment()用法及代码示例


ImagickDraw::comment()函数是PHP中的内置函数,用于向向量输出流添加注释。注释将附加在输出流的末尾。

用法:

bool ImagickDraw::comment( string $comment )

参数:该函数接受一个包含注释的单个参数$comment。


返回值:成功时此函数返回TRUE。

异常:该函数在错误时引发ImagickException。

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

程序1:

<?php 
  
//Create a new Imagick object 
$imagick = new Imagick(); 
  
// Create a image on imagick object 
$imagick->newImage(800, 250, 'white'); 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Add comment 
$draw->comment('Hello ! This is my comment.'); 
  
// Get the vector graphics as string 
$graphics = $draw->getVectorGraphics(); 
  
// Get comment from vector graphics 
$comment = substr($graphics, 807);  
echo $comment; 
?>

输出:

Hello ! This is my comment.

程序2:

<?php 
  
//Create a new Imagick object 
$imagick = new Imagick(); 
  
// Create a image on imagick object 
$imagick->newImage(800, 250, 'white'); 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
$string = 'This is my comment'; 
  
// Add comment 
$draw->comment($string); 
  
// Get the vector graphics 
$graphics = $draw->getVectorGraphics(); 
  
// Get comment from vector graphics 
$getComment = substr($graphics, 807, strlen($string)); 
  
// Set the font size 
$draw->setFontSize(50); 
  
// Write on image 
$draw->annotation(50, 100, $getComment); 
  
// Render the draw commands 
$imagick->drawImage($draw); 
  
// Show the output 
$imagick->setImageFormat('png'); 
header("Content-Type:image/png"); 
echo $imagick->getImageBlob(); 
?>

输出:

参考: https://www.php.net/manual/en/imagickdraw.comment.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickDraw comment() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。