summaryrefslogblamecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/basic/SVGICCColor.java
blob: d47f44fc9366d1dcd45a90859af4433e4e0c8710 (plain) (tree)


























                                                                                                                    
/*
 * 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();
}