ImagickKernel::fromBuiltIn()函數是PHP中的一個內置函數,用於從內置內核創建內核。
用法:
ImagickKernel ImagickKernel::fromBuiltIn( int $kernelType, string $kernelString )
參數:該函數接受上述和以下所述的兩個參數:
- $kernelType:它指定內核的類型。
- $kernelString:它指定描述參數的字符串。
返回值:成功時,此函數將返回一個新的ImagickKernel對象。
異常:該函數在錯誤時引發ImagickException。
以下示例程序旨在說明PHP中的ImagickKernel::fromBuiltIn()函數:
程序1:
<?php
// Create a kernel from matrix
$kernel = ImagickKernel::fromBuiltIn(Imagick::KERNEL_DIAMOND, "2");
echo "The matrix of Builtin kernel - Diamond:<br/>";
// 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 .= "<br>";
}
echo $output;
?>
輸出:
The matrix of Builtin kernel - Diamond: 00100 01110 11111 01110 00100
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Create a kernel from built In types
$kernel = ImagickKernel::fromBuiltIn(Imagick::KERNEL_SQUARE, "2");
// Scale the kernel
$kernel->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
相關用法
- PHP ImagickKernel fromMatrix()用法及代碼示例
- PHP ImagickKernel separate()用法及代碼示例
- PHP ImagickKernel scale()用法及代碼示例
- PHP ImagickKernel addKernel()用法及代碼示例
- PHP ImagickKernel getMatrix()用法及代碼示例
- PHP ImagickKernel addUnityKernel()用法及代碼示例
- PHP each()用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.set.add()用法及代碼示例
- PHP next()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- p5.js red()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickKernel fromBuiltIn() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。