1 | <?php |
||
15 | class ProcessColorModel |
||
16 | { |
||
17 | const DEVICE_RGB = 'DeviceRGB'; |
||
18 | const DEVICE_CMYK = 'DeviceCMYK'; |
||
19 | const DEVICE_GRAY = 'DeviceGray'; |
||
20 | |||
21 | |||
22 | /** |
||
23 | * Available process color model values |
||
24 | * |
||
25 | * @var string[] $values |
||
26 | */ |
||
27 | private static $values = [ |
||
28 | self::DEVICE_RGB, |
||
29 | self::DEVICE_CMYK, |
||
30 | self::DEVICE_GRAY |
||
31 | ]; |
||
32 | |||
33 | /** |
||
34 | * Get available process color model values |
||
35 | * |
||
36 | * @return string[] |
||
37 | */ |
||
38 | public static function values() |
||
42 | } |
||
43 |