Gmagick::raiseimage()函数是PHP中的内置函数,用于通过使图像的边变亮和变暗来创建模拟的三维button-like效果。 raise_info的宽度和高度定义了效果的垂直和水平边的宽度。
用法:
Gmagick Gmagick::raiseimage( $width, $height, $x, $y, $raise )
参数:该函数接受上述和以下所述的五个参数:
- $width:此参数存储要提高的区域的宽度值。
- $height:此参数存储要提升的区域的高度值。
- $x:此参数存储x坐标的值。
- $y:此参数存储y坐标的值。
- $raise:此参数存储提升值,其中非零的值会产生3-D提升效果,否则会降低效果。
返回值:成功时,此函数返回Gmagick对象。
错误/异常:此函数在出错时引发GmagickException。
以下示例程序旨在说明PHP中的Gmagick::raiseimage()函数:
程序1:
输入图片:
<?php
// Create a Gmagick object
$gmagick = new Gmagick(
'https://media.geeksforgeeks.org/wp-content/uploads/tech.png');
// Raise the image.
$gmagick->raiseimage(12, 12, 12, 12, true);
header('Content-type:image/png');
// Output the image
echo $gmagick;
?>
输出:
程序2:
<?php
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Create GmagickPixel object
$strokeColor = new GmagickPixel('Red');
$fillColor = new GmagickPixel('Green');
// Set the color, opacity of image
$draw->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.net/manual/en/gmagick.raiseimage.php
相关用法
- PHP Imagick raiseImage()用法及代码示例
- PHP Gmagick getimagemattecolor()用法及代码示例
- PHP Gmagick getimageprofile()用法及代码示例
- PHP Gmagick quantizeimage()用法及代码示例
- PHP Gmagick getimagebackgroundcolor()用法及代码示例
- PHP Gmagick getfilename()用法及代码示例
- PHP Gmagick destroy()用法及代码示例
- PHP Gmagick getimagewhitepoint()用法及代码示例
- PHP Gmagick getimagetype()用法及代码示例
- PHP Gmagick getimageredprimary()用法及代码示例
- PHP Gmagick clear()用法及代码示例
- PHP Gmagick levelimage()用法及代码示例
- PHP Gmagick current()用法及代码示例
- PHP Gmagick getimageheight()用法及代码示例
- PHP Gmagick labelimage()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | Gmagick raiseimage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。