mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-10 17:28:40 +00:00
46 lines
904 B
PHP
Executable File
46 lines
904 B
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @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\Skew;
|
|
|
|
/**
|
|
* @testdox phpOMS\tests\Image\SkewTest: Image skew
|
|
* @internal
|
|
*/
|
|
final class SkewTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @testdox A image can be automatically unskewed
|
|
* @group framework
|
|
* @group slow
|
|
* @covers \phpOMS\Image\Skew
|
|
*/
|
|
public function testSkew() : void
|
|
{
|
|
Skew::autoRotate(
|
|
__DIR__ . '/tilted.jpg',
|
|
__DIR__ . '/test_binary_untilted.jpg',
|
|
10,
|
|
[150, 75],
|
|
[1700, 900]
|
|
);
|
|
|
|
self::assertTrue(\is_file(__DIR__ . '/test_binary_untilted.jpg'));
|
|
}
|
|
}
|