Imagick::resampleImage()函数是PHP中的内置函数,用于将图像重新采样到所需的分辨率
用法:
bool Imagick::resampleImage( $x_resolution, $y_resolution, $filter, $blur )
参数:该函数接受上述和以下所述的四个参数:
- $x_resolution:此参数存储x分辨率的值。
- $y_resolution:此参数存储y分辨率的值。
- $filter:此参数存储过滤器的值。
- $blur:此参数存储模糊级别的值。
返回值:成功时此函数返回True。
原始图片:
以下示例程序旨在说明PHP中的Imagick::resampleImage()函数:
程序:
<?php
// Create new Imagick object
$imagick = new \Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-19.png');
// Use resampleImage function to resize image
$imagick->resampleImage(200, 200, \Imagick::FILTER_LANCZOS, 1);
// Image Header
header("Content-Type: image/jpg");
// Display the output image
echo $imagick->getImageBlob();
?>
输出:
参考: http://php.net/manual/en/imagick.resampleimage.php
相关用法
- PHP Gmagick resampleimage()用法及代码示例
- PHP Imagick getImageCompression()用法及代码示例
- PHP Imagick getImageExtrema()用法及代码示例
- PHP Imagick setImageCompressionQuality()用法及代码示例
- PHP Imagick getImageChannelDistortions()用法及代码示例
- PHP Imagick getImageClipMask()用法及代码示例
- PHP Imagick getImageChannelStatistics()用法及代码示例
- PHP Imagick getImageCompose()用法及代码示例
- PHP Imagick setImageClipMask()用法及代码示例
- PHP Imagick getImageChannelExtrema()用法及代码示例
- PHP Imagick getImageChannelMean()用法及代码示例
- PHP Imagick setImageCompose()用法及代码示例
- PHP Imagick getImageDistortion()用法及代码示例
- PHP Imagick getImageChannelKurtosis()用法及代码示例
- PHP Imagick morphImages()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | Imagick resampleImage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。