| Modifier and Type | Method and Description |
|---|---|
ColorProfile |
ColorConvertActions.getConvertProfile()
Gets / sets the target ColorProfile for the conversion. If the output intent is embedded, this should be the output intent profile.
|
ColorProfile |
ColorConvertParams.getDefaultCMYK()
Gets / Sets a default CMYK Color Profile.
|
ColorProfile |
ColorConvertParams.getDefaultGray()
Gets / Sets a default Gray Color Profile.
|
ColorProfile |
ColorConvertParams.getDefaultRGB()
Gets / Sets a default RGB Color Profile.
|
ColorProfile |
DrawParams.getICCProfile()
Gets the ICC Profile of the colorspace to be used for rendering from a known value.
|
ColorProfile |
PageImageParams.getICCProfile()
Gets the ICC Profile of the colorspace to be used for rendering from a known value.
|
static ColorProfile |
ColorProfile.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColorProfile[] |
ColorProfile.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Library.changeWorkingSpaceCMYK(ColorProfile colorProfile)
Sets the current CMYK working space to the specified ICC profile.
|
void |
Library.changeWorkingSpaceGray(ColorProfile colorProfile)
Sets the current Gray working space to the specified ICC profile.
|
void |
Library.changeWorkingSpaceRGB(ColorProfile colorProfile)
Sets the current RGB working space to the specified ICC profile.
|
Container |
Container.colorConvert(Document document,
ColorProfile prof,
RenderIntent intent,
boolean embed)
Applies the specified ICC ColorProfile to the objects in the Container
|
Form |
Form.colorConvert(Document document,
ColorProfile prof,
RenderIntent intent,
boolean embed)
Applies the specified ICC ColorProfile to the objects in the form
|
Group |
Group.colorConvert(Document document,
ColorProfile prof,
RenderIntent intent,
boolean embed)
Applies the specified ICC ColorProfile to the elements in the Group object
|
Image |
Image.colorConvert(Document document,
ColorProfile prof,
RenderIntent intent,
boolean embed)
Applies the specified ICC ColorProfile to the Image
|
Path |
Path.colorConvert(Document document,
ColorProfile prof,
RenderIntent intent,
boolean embed)
Applies the specified ICC ColorProfile to the Path
|
Text |
Text.colorConvert(Document document,
ColorProfile prof,
RenderIntent intent,
boolean embed)
Applies the specified ICC ColorProfile to the Text object
|
byte[] |
ColorValueConverter.convertValues(ColorProfile sourceColorProfile,
ColorProfile destinationColorProfile,
RenderIntent intent,
long numberOfInputValueSets,
byte[] inputValueSets)
Converts sets of values from a Source ColorSpace to a Destination colorspace using a specified Render Intent.
|
byte[] |
ColorValueConverter.convertValues(ColorProfile sourceColorProfile,
java.lang.String destinationColorProfilePath,
RenderIntent intent,
long numberOfInputValueSets,
byte[] inputValueSets)
Converts sets of values from a Source ColorSpace to a Destination colorspace using a specified Render Intent.
|
byte[] |
ColorValueConverter.convertValues(java.lang.String sourceColorProfilePath,
ColorProfile destinationColorProfile,
RenderIntent intent,
long numberOfInputValueSets,
byte[] inputValueSets)
Converts sets of values from a Source ColorSpace to a Destination colorspace using a specified Render Intent.
|
void |
ColorConvertActions.setConvertProfile(ColorProfile newProfile) |
void |
ColorConvertParams.setDefaultCMYK(ColorProfile defaultCMYK) |
void |
ColorConvertParams.setDefaultGray(ColorProfile defaultGray) |
void |
ColorConvertParams.setDefaultRGB(ColorProfile defaultRGB) |
void |
DrawParams.setICCProfile(ColorProfile colorProfile)
Sets the ICC Profile of the colorspace to be used for rendering to a known value.
|
void |
PageImageParams.setICCProfile(ColorProfile colorProfile)
Sets the ICC Profile of the colorspace to be used for rendering to a known value.
|