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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。