| Modifier and Type | Class and Description |
|---|---|
class |
CalGrayColorSpace
A calibrated gray color space.
|
class |
CalRGBColorSpace
A calibrated RGB color space.
|
class |
DeviceNColorSpace
Represents a color space with an arbitrary number of color components.
|
class |
ICCBasedColorSpace
Works with the ICC color space.
|
class |
IndexedColorSpace
Indexed color spaces are used to reduce the amount of memory used for processing images.
|
class |
LabColorSpace
A Lab color space is a CIE-based ABC color space with two transformation stages.
|
class |
NamedColorSpace
Class used to define the color space in use.
|
class |
SeparationColorSpace
Defines the use of additional named colorants in a PDF document.
|
| Modifier and Type | Field and Description |
|---|---|
static ColorSpace |
ColorSpace.DEVICE_CMYK |
static ColorSpace |
ColorSpace.DEVICE_GRAY |
static ColorSpace |
ColorSpace.DEVICE_RGB |
static ColorSpace |
ColorSpace.DEVICE_RGBA |
static ColorSpace |
ColorSpace.LAB |
static ColorSpace |
ColorSpace.LAB_A |
| Modifier and Type | Method and Description |
|---|---|
ColorSpace |
DeviceNColorSpace.getAlternate()
the alternate color space, which can be any device or CIE-based color space but not another special color space (Pattern, Indexed, Separation, or DeviceN).
|
ColorSpace |
ICCBasedColorSpace.getAlternate()
An alternate color space to be used in case the one specified in the stream data is not supported (for example, by applications designed for earlier versions of PDF).
|
ColorSpace |
SeparationColorSpace.getAlternate()
the alternate color space, which can be any device or CIE-based color space but not another special color space (Pattern, Indexed, Separation, or DeviceN).
|
ColorSpace |
IndexedColorSpace.getBase()
The base color space in which the values in the color table are to be interpreted.
|
ColorSpace |
DrawParams.getColorSpace()
The color space in which the bitmap data is represented.
|
ColorSpace |
Image.getColorSpace()
return the ColorSpace with which this Image was created.
|
ColorSpace |
Shading.getColorSpace()
Get the ColorSpace of the current Shading object.
|
ColorSpace |
ShadingPattern.getColorSpace()
The color space of a shading pattern.
|
ColorSpace |
Content.getDefaultColorSpace(java.lang.String name)
Get a default color space from a Content object.
|
ColorSpace |
PageImageParams.getImageColorSpace()
The ColorSpace used in exporting a PDF page to an image
|
ColorSpace |
Color.getSpace()
The color space of the color
|
| Modifier and Type | Method and Description |
|---|---|
void |
ICCBasedColorSpace.setAlternate(ColorSpace alternate)
An alternate color space to be used in case the one specified in the stream data is not supported (for example, by applications designed for earlier versions of PDF).
|
void |
DrawParams.setColorSpace(ColorSpace colorSpace)
The color space in which the bitmap data is represented.
|
void |
ShadingPattern.setColorSpace(ColorSpace colorSpace)
The color space of a shading pattern.
|
void |
Content.setDefaultColorSpace(java.lang.String name,
ColorSpace colorSpace)
Set a default color space from a Content object.
|
void |
PageImageParams.setImageColorSpace(ColorSpace cs) |
| Constructor and Description |
|---|
AxialShadingPattern(ColorSpace colorSpace,
java.util.List<Point> coords,
java.util.List<Function> function)
Create an AxialShadingPattern.
|
Color(ColorSpace colorSpace,
java.util.List<java.lang.Double> values)
Create a new color in an arbitrary color space.
|
DeviceNColorSpace(java.util.List<java.lang.String> names,
ColorSpace alternate,
Function tintTransform)
Create a DeviceN color space.
|
Image(byte[] buffer,
int width,
int height,
ColorSpace colorSpace)
Create an image from byte array.
|
IndexedColorSpace(ColorSpace base,
int hival,
java.util.List<java.lang.Integer> lookup)
Create a Indexed color space.
|
PageImageParams(ColorSpace ColorSpace,
java.util.EnumSet<SmoothFlags> Smoothing,
int PixelWidth,
int PixelHeight,
double HorizontalResolution,
double VerticalResolution,
java.util.EnumSet<DrawFlags> PageDrawFlags)
Set up the parameters for rendering a PDF page to an image.
|
SeparationColorSpace(java.lang.String separationName,
ColorSpace alternate,
Function tintTransform)
Create a separation color space.
|