mirror of
https://github.com/Intervention/image.git
synced 2025-08-24 14:32:52 +02:00
29 lines
1.0 KiB
PHP
29 lines
1.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Intervention\Image\Tests\Unit\Drivers\Gd\Modifiers;
|
|
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
use PHPUnit\Framework\Attributes\RequiresPhpExtension;
|
|
use Intervention\Image\Modifiers\DrawPolygonModifier;
|
|
use Intervention\Image\Geometry\Point;
|
|
use Intervention\Image\Geometry\Polygon;
|
|
use Intervention\Image\Tests\GdTestCase;
|
|
|
|
#[RequiresPhpExtension('gd')]
|
|
#[CoversClass(\Intervention\Image\Modifiers\DrawPixelModifier::class)]
|
|
#[CoversClass(\Intervention\Image\Drivers\Gd\Modifiers\DrawPixelModifier::class)]
|
|
final class DrawPolygonModifierTest extends GdTestCase
|
|
{
|
|
public function testApply(): void
|
|
{
|
|
$image = $this->readTestImage('trim.png');
|
|
$this->assertEquals('00aef0', $image->pickColor(14, 14)->toHex());
|
|
$drawable = new Polygon([new Point(0, 0), new Point(15, 15), new Point(20, 20)]);
|
|
$drawable->setBackgroundColor('b53717');
|
|
$image->modify(new DrawPolygonModifier($drawable));
|
|
$this->assertEquals('b53717', $image->pickColor(14, 14)->toHex());
|
|
}
|
|
}
|