summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/basic/SVGICCColor.java
blob: d47f44fc9366d1dcd45a90859af4433e4e0c8710 (plain) (blame)
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
/*
 * SVGICCColor.java
 *
 * Created on April 12, 2007, 2:10 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander.svg.basic;

/**
 * 
 * The SVGICCColor  interface expresses an ICC-based color specification.
 * @author kitfox
 */
public interface SVGICCColor
{
    /**
     * The name of the color profile, which is the first parameter of an ICC color specification.
     */
    public String getColorProfile();
    /**
     * The list of color values that define this ICC color. Each color value is an arbitrary floating point number.
     */
    public SVGNumberList getColors();
}