org.w3c.dom.svg.SVGRenderingIntent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of svg-dom-java Show documentation
Show all versions of svg-dom-java Show documentation
The SVG DOM bindings for Java, written by the W3C, distributed
by aXSL.
The newest version!
package org.w3c.dom.svg;
public interface SVGRenderingIntent {
// Rendering Intent Types
public static final short RENDERING_INTENT_UNKNOWN = 0;
public static final short RENDERING_INTENT_AUTO = 1;
public static final short RENDERING_INTENT_PERCEPTUAL = 2;
public static final short RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3;
public static final short RENDERING_INTENT_SATURATION = 4;
public static final short RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5;
}