Completed
Push — master ( 0ae2b7...d7633b )
by Daniel
03:14
created

ColorConversionStrategy::values()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 0
cts 2
cp 0
rs 10
nc 1
cc 1
eloc 2
nop 0
crap 2
1
<?php
2
/**
3
 * This file is part of the Ghostscript package
4
 *
5
 * @author Daniel Schröder <[email protected]>
6
 */
7
8
namespace GravityMedia\Ghostscript\Enum;
9
10
/**
11
 * The color conversion strategy enum
12
 *
13
 * @package GravityMedia\Ghostscript\Enum
14
 */
15
class ColorConversionStrategy
16
{
17
    /**
18
     * Leave color unchanged
19
     */
20
    const LEAVE_COLOR_UNCHANGED = 'LeaveColorUnchanged';
21
22
    /**
23
     * Tag everything for color management
24
     */
25
    const USE_DEVICE_INDEPENDENT_COLOR = 'UseDeviceIndependentColor';
26
27
    /**
28
     * Convert all colors to gray
29
     */
30
    const GRAY = 'Gray';
31
32
    /**
33
     * Convert all colors to sRGB
34
     */
35
    const SRGB = 'sRGB';
36
37
    /**
38
     * Convert all colors to CMYK
39
     */
40
    const CMYK = 'CMYK';
41
42
    /**
43
     * Available color conversion strategy values
44
     *
45
     * @var string[]
46
     */
47
    private static $values = [
48
        self::LEAVE_COLOR_UNCHANGED,
49
        self::USE_DEVICE_INDEPENDENT_COLOR,
50
        self::GRAY,
51
        self::SRGB,
52
        self::CMYK
53
    ];
54
55
    /**
56
     * Get available color conversion strategy values
57
     *
58
     * @return string[]
59
     */
60
    public static function values()
61
    {
62
        return self::$values;
63
    }
64
}
65