Class NamedColorProfile
- java.lang.Object
-
- org.apache.xmlgraphics.java2d.color.profile.NamedColorProfile
-
public class NamedColorProfile extends java.lang.ObjectSimplified in-memory representation of an ICC named color profile.
-
-
Constructor Summary
Constructors Constructor Description NamedColorProfile(java.lang.String profileName, java.lang.String copyright, NamedColorSpace[] namedColors, RenderingIntent intent)Creates a new named color profile.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCopyright()Returns the profile copyright.NamedColorSpacegetNamedColor(java.lang.String name)Returns a named color.NamedColorSpace[]getNamedColors()Returns the array of named colors.java.lang.StringgetProfileName()Returns the profile name.RenderingIntentgetRenderingIntent()Returns the color profile's rendering intent.java.lang.StringtoString()
-
-
-
Constructor Detail
-
NamedColorProfile
public NamedColorProfile(java.lang.String profileName, java.lang.String copyright, NamedColorSpace[] namedColors, RenderingIntent intent)Creates a new named color profile.- Parameters:
profileName- the profile namecopyright- the copyrightnamedColors- the array of named colorsintent- the rendering intent
-
-
Method Detail
-
getRenderingIntent
public RenderingIntent getRenderingIntent()
Returns the color profile's rendering intent.- Returns:
- the rendering intent
(See
ICC_Profile.ic*)
-
getNamedColors
public NamedColorSpace[] getNamedColors()
Returns the array of named colors.- Returns:
- the array of named colors
-
getNamedColor
public NamedColorSpace getNamedColor(java.lang.String name)
Returns a named color.- Parameters:
name- the color name- Returns:
- the named color (or null if it is not available)
-
getProfileName
public java.lang.String getProfileName()
Returns the profile name.- Returns:
- the profile name
-
getCopyright
public java.lang.String getCopyright()
Returns the profile copyright.- Returns:
- the profile copyright
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-