📜  PHP | Gmagick drawimage()函数

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

PHP | Gmagick drawimage()函数

Gmagick::drawimage()函数是PHP中的一个内置函数,用于在当前图像上渲染 GmagickDraw 对象。

句法:

Gmagick Gmagick::drawimage ( $GmagickDraw )


参数:此函数接受单个参数作为$GmagickDraw存储渲染图像的操作。

返回值:此函数返回 Gmagick 对象。

错误/异常:此函数在错误时抛出 GmagickException。

下面的程序说明了PHP中的Gmagick::drawimage()函数:

方案一:

setStrokeOpacity(1); 
$draw->setStrokeColor('Red'); 
$draw->setFillColor('Green'); 
    
// Set the width and height of image 
$draw->setStrokeWidth(7); 
$draw->setFontSize(72); 
     
// Function to draw circle  
$draw->circle(250, 250, 100, 150); 
   
$gmagick = new Gmagick(); 
$gmagick->newImage(500, 500, 'White'); 
$gmagick->setImageFormat("png"); 
  
// Use of drawimage function
$gmagick->drawimage($draw); 
  
// Emboss the image.
  
$gmagick->embossimage(15, 6);
   
// Display the output image 
header("Content-Type: image/png"); 
echo $gmagick->getImageBlob(); 
?> 

输出:

方案二:

setFillColor('Green'); 
    
// Set the width and height of image 
$draw->setStrokeWidth(7); 
$draw->setFontSize(72); 
     
// Function to draw rectangle  
$draw->rectangle(150, 150, 400, 400); 
   
$gmagick = new Gmagick(); 
$gmagick->newImage(500, 500, 'White'); 
$gmagick->setImageFormat("png"); 
  
// Use of drawimage function
$gmagick->drawImage($draw); 
   
// Display the output image 
header("Content-Type: image/png"); 
echo $gmagick->getImageBlob(); 
?> 

输出:

参考: http: PHP。 PHP