You are here

public function ConvolveImageEffect::defaultConfiguration in Imagick 8

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides ImageEffectBase::defaultConfiguration

File

src/Plugin/ImageEffect/ConvolveImageEffect.php, line 48

Class

ConvolveImageEffect
Applies the convolve effect on an image resource.

Namespace

Drupal\imagick\Plugin\ImageEffect

Code

public function defaultConfiguration() {
  return [
    'matrix' => [
      'entries' => array_fill(0, 3, array_fill(0, 3, 1)),
    ],
  ];
}