📜  PHP |想象一下 raiseImage()函数

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

PHP |想象一下 raiseImage()函数

Imagick::raiseImage()函数是PHP中的一个内置函数,用于通过闪电和使图像边缘变暗来创建模拟的 3D 按钮状效果。
句法:

bool Imagick::raiseImage( $width, $height, $x, $y, $raise )

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

  • $width:此参数存储按钮的宽度值。
  • $height:此参数存储按钮的高度值。
  • $x:该参数存储x坐标的值。
  • $y:此参数存储y坐标的值。
  • $raise:此参数存储所需的加薪金额的值。

返回值:此函数在成功时返回 True。
原图:

下面的程序说明了PHP中的Imagick raiseImage()函数:
方案一:

php
raiseImage(20,30,10,15,25);
 
// Display the image
echo $image;
?>


php
setFillColor(new ImagickPixel('green'));
 
// Set the text font size
$draw->setFontSize(50);
 
$metrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($metrix['textWidth'], $metrix['textHeight'],
new ImagickPixel('white'));
 
// Draw the image        
$im->drawImage($draw);
 
// raiseImage Function
$im->raiseImage(5,15,50,25,20);
  
$im->setImageFormat('jpeg');
 
header("Content-Type: image/jpg");
 
// Display the output image
echo $im->getImageBlob();
?>


输出:

方案二:

PHP

setFillColor(new ImagickPixel('green'));
 
// Set the text font size
$draw->setFontSize(50);
 
$metrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($metrix['textWidth'], $metrix['textHeight'],
new ImagickPixel('white'));
 
// Draw the image        
$im->drawImage($draw);
 
// raiseImage Function
$im->raiseImage(5,15,50,25,20);
  
$im->setImageFormat('jpeg');
 
header("Content-Type: image/jpg");
 
// Display the output image
echo $im->getImageBlob();
?>

输出:

参考: http: PHP。 PHP