PHP | imagick setImageInterpolateMethod()函数
Imagick::setImageInterpolateMethod()函数是PHP中的一个内置函数,用于设置图像的隔行扫描方案。
句法:
bool Imagick::setImageInterpolateMethod( int $method )
参数:此函数接受一个参数$method ,它对应于 INTERPOLATE 常量之一。我们也可以像这样直接传递常量
setImageInterpolateMethod(imagick::INTERPOLATE_BICUBIC); .
INTERPOLATE 常量列表如下:
- imagick::INTERPOLATE_UNDEFINED (0)
- imagick::INTERPOLATE_AVERAGE (1)
- imagick::INTERPOLATE_BICUBIC (2)
- imagick::INTERPOLATE_BILINEAR (3)
- imagick::INTERPOLATE_FILTER (4)
- imagick::INTERPOLATE_INTEGER (5)
- imagick::INTERPOLATE_MESH (6)
- imagick::INTERPOLATE_NEARESTNEIGHBOR (7)
- imagick::INTERPOLATE_SPLINE (8)
返回值:此函数在成功时返回 TRUE。
下面的程序说明了PHP中的Imagick::setImageInterpolateMethod()函数:
方案一:
PHP
setImageInterpolateMethod(imagick::INTERPOLATE_BILINEAR);
// Get the Interpolate Method
$interpolateScheme = $imagick->getImageInterpolateMethod();
echo $interpolateScheme;
?>
PHP
setImageInterpolateMethod(imagick::INTERPOLATE_NEARESTNEIGHBOR);
// Get the Interpolate Method
$interpolateScheme = $imagick->getImageInterpolateMethod();
echo $interpolateScheme;
?>
输出:
3 // Which corresponds to imagick::INTERPOLATE_BILINEAR.
方案二:
PHP
setImageInterpolateMethod(imagick::INTERPOLATE_NEARESTNEIGHBOR);
// Get the Interpolate Method
$interpolateScheme = $imagick->getImageInterpolateMethod();
echo $interpolateScheme;
?>
输出:
7 // Which corresponds to imagick::INTERPOLATE_NEARESTNEIGHBOR.
参考: https://www. PHP.net/manual/en/imagick.setimageinterpolate 方法。 PHP