-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathRemoveAnimationModifier.php
More file actions
59 lines (49 loc) Β· 1.69 KB
/
RemoveAnimationModifier.php
File metadata and controls
59 lines (49 loc) Β· 1.69 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
52
53
54
55
56
57
58
59
<?php
declare(strict_types=1);
namespace Intervention\Image\Modifiers;
use Intervention\Image\Drivers\SpecializableModifier;
use Intervention\Image\Exceptions\InvalidArgumentException;
use Intervention\Image\Interfaces\FrameInterface;
use Intervention\Image\Interfaces\ImageInterface;
class RemoveAnimationModifier extends SpecializableModifier
{
/**
* @throws InvalidArgumentException
*/
public function __construct(public int|string $position = 0)
{
if (is_int($this->position) && $this->position < 0) {
throw new InvalidArgumentException('Invalid position argument. Only use int<0, max>');
}
}
/**
* @throws InvalidArgumentException
*/
protected function selectedFrame(ImageInterface $image): FrameInterface
{
return $image->core()->frame($this->normalizePosition($image));
}
/**
* Return the position of the selected frame as integer.
*
* @throws InvalidArgumentException
*/
protected function normalizePosition(ImageInterface $image): int
{
if (is_int($this->position)) {
return $this->position;
}
if (is_numeric($this->position)) {
return (int) $this->position;
}
// calculate position from percentage value
if (preg_match("/^(?P<percent>[0-9]{1,3})%$/", $this->position, $matches) !== 1) {
throw new InvalidArgumentException(
'Position must be either integer or a percent value as string'
);
}
$total = count($image);
$position = intval(round($total / 100 * intval($matches['percent'])));
return $position === $total ? $position - 1 : $position;
}
}