| 1 | <?php |
||
| 15 | class DefaultRenderingIntent |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Write no rendering intent to the PDF |
||
| 19 | */ |
||
| 20 | const __DEFAULT = 'Default'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Perceptual rendering intent |
||
| 24 | */ |
||
| 25 | const PERCEPTUAL = 'Perceptual'; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Saturation rendering intent |
||
| 29 | */ |
||
| 30 | const SATURATION = 'Saturation'; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Relative colorimetric rendering intent |
||
| 34 | */ |
||
| 35 | const RELATIVE_COLORIMETRIC = 'RelativeColorimetric'; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Absolute colorimetric rendering intent |
||
| 39 | */ |
||
| 40 | const ABSOLUTE_COLORIMETRIC = 'AbsoluteColorimetric'; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Available default rendering intent values |
||
| 44 | * |
||
| 45 | * @var string[] |
||
| 46 | */ |
||
| 47 | private static $values = [ |
||
| 48 | self::__DEFAULT, |
||
| 49 | self::PERCEPTUAL, |
||
| 50 | self::SATURATION, |
||
| 51 | self::RELATIVE_COLORIMETRIC, |
||
| 52 | self::ABSOLUTE_COLORIMETRIC |
||
| 53 | ]; |
||
| 54 | |||
| 55 | /** |
||
| 56 | * Get available default rendering intent values |
||
| 57 | * |
||
| 58 | * @return string[] |
||
| 59 | */ |
||
| 60 | public static function values() |
||
| 64 | } |
||
| 65 |