phpOMS/tests/Image/KernelTest.php
2024-03-20 07:21:26 +00:00

44 lines
1.5 KiB
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package tests
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\tests\Image;
require_once __DIR__ . '/../Autoloader.php';
use phpOMS\Image\Kernel;
/**
* @internal
*/
#[\PHPUnit\Framework\Attributes\CoversClass(\phpOMS\Image\Kernel::class)]
#[\PHPUnit\Framework\Attributes\TestDox('phpOMS\tests\Image\KernelTest: Image kernel')]
final class KernelTest extends \PHPUnit\Framework\TestCase
{
#[\PHPUnit\Framework\Attributes\Group('framework')]
#[\PHPUnit\Framework\Attributes\Group('slow')]
#[\PHPUnit\Framework\Attributes\TestDox('The kernel can be applied to an image which is then stored in a new file')]
public function testKernel() : void
{
Kernel::convolve(__DIR__ . '/img1.png', __DIR__ . '/test_img1_sharpen.png', Kernel::KERNEL_SHARPEN);
Kernel::convolve(__DIR__ . '/img1.png', __DIR__ . '/test_img1_blur.png', Kernel::KERNEL_GAUSSUAN_BLUR_3);
Kernel::convolve(__DIR__ . '/img1.png', __DIR__ . '/test_img1_emboss.png', Kernel::KERNEL_EMBOSS);
Kernel::convolve(__DIR__ . '/img1.png', __DIR__ . '/test_img1_unsharpen.png', Kernel::KERNEL_UNSHARP_MASKING);
self::assertTrue(\is_file(__DIR__ . '/test_img1_sharpen.png'));
self::assertTrue(\is_file(__DIR__ . '/test_img1_blur.png'));
self::assertTrue(\is_file(__DIR__ . '/test_img1_emboss.png'));
self::assertTrue(\is_file(__DIR__ . '/test_img1_unsharpen.png'));
}
}