PHP |想象一下 filter()函数
Imagick::filter()函数是PHP中的一个内置函数,用于将自定义卷积核应用于图像。内核、卷积矩阵或掩码是一个小矩阵。它用于模糊、锐化、浮雕、边缘检测等等。
句法:
bool Imagick::filter( $ImagickKernel, $channel = Imagick::CHANNEL_UNDEFINED )
参数:该函数接受上面提到的两个参数,如下所述:
- $ImagickKernel:它是一个内核或一系列链接的多个内核,用于应用于图像。
- $channel:它是基于模式使用的常数。它是整数类型,通道的默认值为 Imagick::CHANNEL_DEFAULT。
返回值:当对图像的过滤器成功应用时返回true。
下面的程序说明了PHP中的 Imagick::filter()函数:
程序:
scale($strength, \Imagick::NORMALIZE_KERNEL_VALUE);
// Use addUnityKernel() function
$kernel->addUnityKernel(1 - $strength);
// Use filter() function
$imagick->filter($kernel);
header("Content-Type: image/jpg");
// Display the output image
echo $imagick->getImageBlob();
?>
输出:
参考: https://www. PHP.net/manual/en/imagick.filter。 PHP