-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathFrameInterface.php
More file actions
77 lines (61 loc) · 1.59 KB
/
FrameInterface.php
File metadata and controls
77 lines (61 loc) · 1.59 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
declare(strict_types=1);
namespace Intervention\Image\Interfaces;
use Intervention\Image\Exceptions\RuntimeException;
interface FrameInterface
{
/**
* Return image data of frame in driver specific format
*/
public function native(): mixed;
/**
* Set image data of drame in driver specific format
*/
public function setNative(mixed $native): self;
/**
* Transform frame into an image
*
* @throws RuntimeException
*/
public function toImage(DriverInterface $driver): ImageInterface;
/**
* Get image size of current frame
*/
public function size(): SizeInterface;
/**
* Return animation delay of current frame in seconds
*/
public function delay(): float;
/**
* Set animation frame delay in seoncds
*/
public function setDelay(float $delay): self;
/**
* Get disposal method of current frame
*/
public function dispose(): int;
/**
* Set disposal method of current frame
*/
public function setDispose(int $dispose): self;
/**
* Set pixel offset of current frame
*/
public function setOffset(int $left, int $top): self;
/**
* Get left offset in pixels
*/
public function offsetLeft(): int;
/**
* Set left pixel offset for current frame
*/
public function setOffsetLeft(int $offset): self;
/**
* Get top pixel offset of current frame
*/
public function offsetTop(): int;
/**
* Set top pixel offset of current frame
*/
public function setOffsetTop(int $offset): self;
}