-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathAbstractDrawModifier.php
More file actions
51 lines (45 loc) Β· 1.47 KB
/
AbstractDrawModifier.php
File metadata and controls
51 lines (45 loc) Β· 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
declare(strict_types=1);
namespace Intervention\Image\Modifiers;
use Intervention\Image\Color;
use Intervention\Image\Drivers\SpecializableModifier;
use Intervention\Image\Exceptions\ColorDecoderException;
use Intervention\Image\Exceptions\InvalidArgumentException;
use Intervention\Image\Exceptions\StateException;
use Intervention\Image\Interfaces\ColorInterface;
use Intervention\Image\Interfaces\DrawableInterface;
abstract class AbstractDrawModifier extends SpecializableModifier
{
/**
* Return the drawable object which will be rendered by the modifier.
*/
abstract protected function drawable(): DrawableInterface;
/**
* Return the background color of the object rendered by the modifier.
*
* @throws StateException
* @throws ColorDecoderException
*/
protected function backgroundColor(): ColorInterface
{
try {
return $this->driver()->decodeColor($this->drawable()->backgroundColor());
} catch (InvalidArgumentException) {
return Color::transparent();
}
}
/**
* Return the border color of the object rendered by the modifier.
*
* @throws StateException
* @throws ColorDecoderException
*/
protected function borderColor(): ColorInterface
{
try {
return $this->driver()->decodeColor($this->drawable()->borderColor());
} catch (InvalidArgumentException) {
return Color::transparent();
}
}
}