View source
<?php
namespace Drupal\Tests\image_effects\Functional\Effect;
use Drupal\Tests\image_effects\Functional\ImageEffectsTestBase;
class ConvolutionTest extends ImageEffectsTestBase {
public function providerToolkits() {
$toolkits = parent::providerToolkits();
unset($toolkits['ImageMagick-graphicsmagick']);
return $toolkits;
}
public function testConvolutionEffect($toolkit_id, $toolkit_config, array $toolkit_settings) {
$this
->changeToolkit($toolkit_id, $toolkit_config, $toolkit_settings);
$original_uri = $this
->getTestImageCopyUri('core/tests/fixtures/files/image-test.png');
$derivative_uri = 'public://test-images/image-test-derived.png';
$effect = [
'id' => 'image_effects_convolution',
'data' => [
'kernel][entries][0][0' => 9,
'kernel][entries][0][1' => 9,
'kernel][entries][0][2' => 9,
'kernel][entries][1][0' => 9,
'kernel][entries][1][1' => 9,
'kernel][entries][1][2' => 9,
'kernel][entries][2][0' => 9,
'kernel][entries][2][1' => 9,
'kernel][entries][2][2' => 9,
'divisor' => 9,
'offset' => 0,
'label' => 'test_convolution',
],
];
$uuid = $this
->addEffectToTestStyle($effect);
$image = $this->imageFactory
->get($original_uri);
$effect = $this->testImageStyle
->getEffect($uuid);
$effect
->applyEffect($image);
switch ($this->imageFactory
->getToolkitId()) {
case 'gd':
$image
->save($derivative_uri);
$derivative_image = $this->imageFactory
->get($derivative_uri);
$this
->assertTrue($derivative_image
->isValid());
break;
case 'imagemagick':
$find = $image
->getToolkit()
->arguments()
->find('/^./', NULL, [
'image_toolkit_operation' => 'convolution',
]);
$arg = array_shift($find);
$this
->assertEquals("-morphology Convolve '3x3:1,1,1 1,1,1 1,1,1'", $arg['argument']);
break;
}
$this
->removeEffectFromTestStyle($uuid);
}
public function testConvolutionEffectParameters() {
$effect = [
'id' => 'image_effects_convolution',
'data' => [
'kernel][entries][0][0' => 0,
'kernel][entries][0][1' => 1,
'kernel][entries][0][2' => 2,
'kernel][entries][1][0' => 3,
'kernel][entries][1][1' => 4,
'kernel][entries][1][2' => 5,
'kernel][entries][2][0' => 6,
'kernel][entries][2][1' => 7,
'kernel][entries][2][2' => 8,
'divisor' => 9,
'offset' => 0,
'label' => 'test_convolution',
],
];
$uuid = $this
->addEffectToTestStyle($effect);
$effect_configuration_data = $this->testImageStyle
->getEffect($uuid)
->getConfiguration()['data'];
$this
->assertEquals([
[
0,
1,
2,
],
[
3,
4,
5,
],
[
6,
7,
8,
],
], $effect_configuration_data['kernel']);
$this
->assertEquals(9, $effect_configuration_data['divisor']);
$this
->assertEquals(0, $effect_configuration_data['offset']);
$this
->assertEquals('test_convolution', $effect_configuration_data['label']);
}
}