📜  PHP | ImagickKernel fromBuiltIn()函数

📅  最后修改于: 2022-05-13 01:56:33.876000             🧑  作者: Mango

PHP | ImagickKernel fromBuiltIn()函数

ImagickKernel::fromBuiltIn()函数是PHP中的一个内置函数,用于从内置内核创建内核。

句法:

ImagickKernel ImagickKernel::fromBuiltIn( int $kernelType, string $kernelString )

参数:此函数接受上面提到的两个参数,如下所述:

  • $kernelType:它指定内核的类型。
  • $kernelString:它指定描述参数的字符串。

返回值:此函数在成功时返回一个新的 ImagickKernel 对象。

异常:此函数在出错时抛出 ImagickException。

下面的程序说明了PHP中的ImagickKernel::fromBuiltIn()函数

方案一:

";
  
// Get the matrix from kernel
$matrix = $kernel->getMatrix();
  
foreach ($matrix as $row) {
    foreach ($row as $cell) {
        if ($cell === false) {
            $output .= "0";
        } else {
            $output .= $cell;
        }
    }
    $output .= "
"; }    echo $output; ?>

输出:

The matrix of Builtin kernel - Diamond:
00100
01110
11111
01110
00100

方案二:

scale(2, Imagick::NORMALIZE_KERNEL_VALUE);
  
// Add the filter
$imagick->filter($kernel);
  
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/imagickkernel.frombuiltin。 PHP