Methods Summary |
---|
protected void | finalize()
|
public int | getColorSpaceType()
switch (colorspace) {
case ColorSpace.CS_sRGB:
case ColorSpace.CS_LINEAR_RGB:
return ColorSpace.TYPE_RGB;
case ColorSpace.CS_CIEXYZ:
return ColorSpace.TYPE_XYZ;
case ColorSpace.CS_PYCC:
return ColorSpace.TYPE_3CLR;
case ColorSpace.CS_GRAY:
return ColorSpace.TYPE_GRAY;
default:
throw new UnsupportedOperationException("Stub cannot perform this operation"); //$NON-NLS-1$
}
|
public byte[] | getData(int tagSignature)
throw new UnsupportedOperationException("Stub cannot perform this operation"); //$NON-NLS-1$
|
public byte[] | getData()
throw new UnsupportedOperationException("Stub cannot perform this operation"); //$NON-NLS-1$
|
public static java.awt.color.ICC_Profile | getInstance(java.lang.String fileName)
throw new UnsupportedOperationException("Stub cannot perform this operation"); //$NON-NLS-1$
|
public static java.awt.color.ICC_Profile | getInstance(java.io.InputStream s)
throw new UnsupportedOperationException("Stub cannot perform this operation"); //$NON-NLS-1$
|
public static java.awt.color.ICC_Profile | getInstance(byte[] data)
throw new UnsupportedOperationException("Stub cannot perform this operation"); //$NON-NLS-1$
|
public static java.awt.color.ICC_Profile | getInstance(int cspace)
throw new UnsupportedOperationException("Stub cannot perform this operation"); //$NON-NLS-1$
|
public int | getMajorVersion()
throw new UnsupportedOperationException("Stub cannot perform this operation"); //$NON-NLS-1$
|
public int | getMinorVersion()
throw new UnsupportedOperationException("Stub cannot perform this operation"); //$NON-NLS-1$
|
public int | getNumComponents()
switch (colorspace) {
case ColorSpace.CS_sRGB:
case ColorSpace.CS_CIEXYZ:
case ColorSpace.CS_LINEAR_RGB:
case ColorSpace.CS_PYCC:
return 3;
case ColorSpace.CS_GRAY:
return 1;
default:
throw new UnsupportedOperationException("Stub cannot perform this operation"); //$NON-NLS-1$
}
|
public int | getPCSType()
throw new UnsupportedOperationException("Stub cannot perform this operation"); //$NON-NLS-1$
|
public int | getProfileClass()
return CLASS_COLORSPACECONVERSION;
|
public java.awt.color.ICC_Profile | loadProfile()
switch (colorspace) {
case ColorSpace.CS_sRGB:
return ICC_Profile.getInstance(ColorSpace.CS_sRGB);
case ColorSpace.CS_GRAY:
return ICC_Profile.getInstance(ColorSpace.CS_GRAY);
case ColorSpace.CS_CIEXYZ:
return ICC_Profile.getInstance(ColorSpace.CS_CIEXYZ);
case ColorSpace.CS_LINEAR_RGB:
return ICC_Profile.getInstance(ColorSpace.CS_LINEAR_RGB);
case ColorSpace.CS_PYCC:
return ICC_Profile.getInstance(ColorSpace.CS_PYCC);
default:
throw new UnsupportedOperationException("Stub cannot perform this operation"); //$NON-NLS-1$
}
|
public void | setData(int tagSignature, byte[] tagData)
throw new UnsupportedOperationException("Stub cannot perform this operation"); //$NON-NLS-1$
|
public void | write(java.lang.String fileName)
throw new UnsupportedOperationException("Stub cannot perform this operation"); //$NON-NLS-1$
|
public void | write(java.io.OutputStream s)
throw new UnsupportedOperationException("Stub cannot perform this operation"); //$NON-NLS-1$
|
private java.lang.Object | writeReplace()Serializable implementation
return loadProfile();
|