CakeFest 2024: The Official CakePHP Conference

ImagickKernel::getMatrix

(PECL imagick >= 3.3.0)

ImagickKernel::getMatrixDescription

Descripción

public ImagickKernel::getMatrix(): array

Obtiene la matriz 2D de valores empleados en este núcleo («kernel»). Los elementos son o del tipo float para elementos que se emplean, o 'false' si el elemento debería omitirse.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

Una matriz (array 2D) de los valores que representan el núcleo.

Ejemplos

Ejemplo #1 ImagickKernel::getMatrix()

<?php


function renderKernelTable($matrix) {
$output = "<table class='infoTable'>";

foreach (
$matrix as $row) {
$output .= "<tr>";
foreach (
$row as $cell) {
$output .= "<td style='text-align:left'>";
if (
$cell === false) {
$output .= "false";
}
else {
$output .= round($cell, 3);
}
$output .= "</td>";
}
$output .= "</tr>";
}

$output .= "</table>";

return
$output;
}

$output = "The built-in kernel name 'ring' with parameters of '2,3.5':<br/>";
$kernel = \ImagickKernel::fromBuiltIn(
\Imagick::KERNEL_RING,
"2,3.5"
);
$matrix = $kernel->getMatrix();
$output .= renderKernelTable($matrix);

echo
$output;

?>

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top