PHP | imagickkernel scale()函数
ImagickKernel::scale()函数是PHP中的一个内置函数,用于将给定的内核列表缩放给定的数量。
句法:
void ImagickKernel::scale( float $scale, int $normalizeFlag )
参数:此函数接受上面提到的两个参数,如下所述:
- $scale:它指定缩放的数量。
- $normalizeFlag:它指定比例的类型。
返回值:此函数不返回任何值。
下面的程序说明了PHP中的ImagickKernel::scale()函数:
方案一:
';
print("".print_r($kernel->getMatrix(), true)."
");
// Scale the kernel
$kernel->scale(5, Imagick::NORMALIZE_KERNEL_VALUE);
echo 'After scaling:
';
print("".print_r($kernel->getMatrix(), true)."
");
?>
输出:
Before scaling:
Array
(
[0] => Array
(
[0] => 0
[1] => 0
[2] => 1
)
[1] => Array
(
[0] => 0
[1] => 2
[2] => 1
)
[2] => Array
(
[0] => 1
[1] => 1
[2] => 1
)
)
After scaling:
Array
(
[0] => Array
(
[0] => 0
[1] => 0
[2] => 0.71428571428571
)
[1] => Array
(
[0] => 0
[1] => 1.4285714285714
[2] => 0.71428571428571
)
[2] => Array
(
[0] => 0.71428571428571
[1] => 0.71428571428571
[2] => 0.71428571428571
)
)
方案二:
scale(4, 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.scale。 PHP