1 | <?php |
||
17 | class ColorProfile |
||
18 | { |
||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $data; |
||
23 | |||
24 | /** |
||
25 | * Create color profile object. |
||
26 | * |
||
27 | * @param string $data |
||
28 | */ |
||
29 | public function __construct($data) |
||
33 | |||
34 | /** |
||
35 | * Get data. |
||
36 | * |
||
37 | * @return string |
||
38 | */ |
||
39 | public function getData() |
||
43 | |||
44 | /** |
||
45 | * Create color profile object from path. |
||
46 | * |
||
47 | * @param string $path |
||
48 | * |
||
49 | * @return $this |
||
50 | */ |
||
51 | public static function fromPath($path) |
||
59 | } |
||
60 |