PHP |想象一下 getImageInterpolateMethod()函数
Imagick::getImageInterpolateMethod()函数是PHP中的一个内置函数,用于获取指定图像的插值方法。
句法:
int Imagick::getImageInterpolateMethod( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个整数值,其中包含对应于 INTERPOLATE 常量之一的插值方法。
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)
异常:此函数在出错时抛出 ImagickException。
下面的程序说明了PHP中的Imagick::getImageInterpolateMethod()函数:
方案一:
getImageInterpolateMethod();
echo $interpolateScheme
?>
输出:
0 // which corresponds to imagick::INTERPOLATE_UNDEFINED.
方案二:
setImageInterpolateMethod(imagick::INTERPOLATE_MESH);
// Get the Interpolate Method
$interpolateScheme = $imagick->getImageInterpolateMethod();
echo $interpolateScheme;
?>
输出:
6 // which corresponds to imagick::INTERPOLATE_MESH
参考: https://www. PHP.net/manual/en/imagick.getimageinterpolate 方法。 PHP