📜  PHP | Gmagick raiseimage()函数

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

PHP | Gmagick raiseimage()函数

Gmagick::raiseimage()函数是PHP中的一个内置函数,用于通过创建图像边缘的变亮和变暗来创建模拟的 3D 按钮状效果。 raise_info 的宽度和高度定义了效果的垂直和水平边缘的宽度。

句法:

Gmagick Gmagick::raiseimage( $width, $height, $x, $y, $raise )


参数:该函数接受上面提到的五个参数,如下所述:

  • $width:此参数存储要提升的区域的宽度值。
  • $height:此参数存储要升高的区域的高度值。
  • $x:此参数存储 x 坐标的值。
  • $y:此参数存储 y 坐标的值。
  • $raise:此参数存储提升的值,其中非零值会创建 3-D 提升效果,否则会产生降低效果。

返回值:此函数在成功时返回 Gmagick 对象。

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

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

方案一:
输入图像:

raiseimage(12, 12, 12, 12, true); 
  
header('Content-type: image/png'); 
    
// Output the image 
echo $gmagick; 
?> 

输出:

方案二:

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"); 
$gmagick->drawImage($draw); 
  
// Lower the image
$gmagick->raiseimage(102, 102, 102, 102, false); 
   
// Display the output image 
header("Content-Type: image/png"); 
echo $gmagick->getImageBlob(); 
?> 

输出:

参考: http: PHP。 PHP