Imagick::extentImage()函數是PHP中的內置函數,它提供了設置圖像大小的方法。此方法設置圖像大小,並允許在圖像的新區域開始處設置x,y坐標。
用法:
bool Imagick::extentImage( $width, $height, $x, $y )
參數:該函數接受上述和以下所述的四個參數:
- $width:此參數存儲新寬度的值。
- $height:此參數存儲新高度的值。
- $x:此參數存儲新尺寸的X位置值。
- $y:此參數存儲新尺寸的Y位置值。
返回值:成功時此函數返回True。
原始圖片:
以下示例程序旨在說明PHP中的Imagick::extentImage()函數:
程序:
<?php
/*require_once('path/vendor/autoload.php');*/
/*Imagick Object*/
$image = new \Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-17.png');
/*Set Background Color*/
$image->setImageBackgroundColor('orange');
/*extentImage*/
$image->extentImage(
$image->getImageWidth(),
$image->getImageHeight(),
-100,
-100
);
/*Image Header*/
header("Content-Type: image/jpg");
// Display output image
echo $image->getImageBlob();
?>
輸出:
參考: http://php.net/manual/en/imagick.extentimage.php
相關用法
- PHP Imagick getImageChannelStatistics()用法及代碼示例
- PHP Imagick getImageCompose()用法及代碼示例
- PHP Imagick setImageClipMask()用法及代碼示例
- PHP Imagick getImageChannelExtrema()用法及代碼示例
- PHP Imagick getImageChannelMean()用法及代碼示例
- PHP Imagick getImageClipMask()用法及代碼示例
- PHP Imagick haldClutImage()用法及代碼示例
- PHP Imagick getImageBackgroundColor()用法及代碼示例
- PHP Imagick getImageChannelDistortion()用法及代碼示例
- PHP Imagick setImageBluePrimary()用法及代碼示例
- PHP Imagick getImageBorderColor()用法及代碼示例
- PHP Imagick setImageBackgroundColor()用法及代碼示例
- PHP Imagick setImageBorderColor()用法及代碼示例
- PHP Imagick setImageCompose()用法及代碼示例
- PHP Imagick setImageDelay()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | Imagick extentImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。