Package | Description |
---|---|
com.aspose.cad |
Modifier and Type | Method and Description |
---|---|
static PixelDataFormat |
PixelDataFormat.getCmyk()
Gets the
PixelDataFormat defined for 32 bits per pixel with 8 bits for each of the cyan, magenta, yellow and black. |
static PixelDataFormat |
PixelDataFormat.getGrayscale()
Gets the
PixelDataFormat defined for 8 bits per pixel with 8 bits representing grayscale intensity in the 0-255 interval. |
static PixelDataFormat |
PixelDataFormat.getGrayscaleAlpha()
Gets the
PixelDataFormat defined for 16 bits per pixel with 8 bits representing grayscale intensity in the 0-255 interval and additional 8 bit alpha component. |
PixelDataFormat |
RawDataSettings.getPixelDataFormat()
Gets or sets the pixel data format
|
PixelDataFormat |
RasterImage.getRawDataFormat()
Gets the raw data format.
|
static PixelDataFormat |
PixelDataFormat.getRgb16Bpp555()
Gets the
PixelDataFormat defined for 16 bits per pixel with 5 bits for each of the red, green and blue, alpha is not defined. |
static PixelDataFormat |
PixelDataFormat.getRgb24Bpp()
Gets the
PixelDataFormat defined for 24 bits per pixel with 8 bits for each of the alpha, red, green and blue, alpha is not defined. |
static PixelDataFormat |
PixelDataFormat.getRgb24BppPng()
Gets the
PixelDataFormat defined for 24 bits per pixel with 8 bits for each of the alpha, red, green and blue, alpha is not defined. |
static PixelDataFormat |
PixelDataFormat.getRgb32Bpp()
Gets the
PixelDataFormat defined for 32 bits per pixel with 8 bits for each of the alpha, red, green and blue. |
static PixelDataFormat |
PixelDataFormat.getRgba32Bpp()
Gets the
PixelDataFormat defined for 32 bits per pixel with 8 bits for each of the alpha, red, green and blue. |
static PixelDataFormat |
PixelDataFormat.getRgbIndexed1Bpp()
Gets the
PixelDataFormat defined for indexed 1 bit per color. |
static PixelDataFormat |
PixelDataFormat.getRgbIndexed2Bpp()
Gets the
PixelDataFormat defined for indexed 2 bit per color. |
static PixelDataFormat |
PixelDataFormat.getRgbIndexed4Bpp()
Gets the
PixelDataFormat defined for indexed 4 bit per color. |
static PixelDataFormat |
PixelDataFormat.getRgbIndexed8Bpp()
Gets the
PixelDataFormat defined for indexed 8 bit per color. |
static PixelDataFormat |
PixelDataFormat.getYCbCr()
Gets the
PixelDataFormat defined for 24 bits per pixel with 8 bits for each of the luma, blue-difference and red-difference chroma components. |
static PixelDataFormat |
PixelDataFormat.getYcck()
Gets the
PixelDataFormat defined for 32 bits per pixel with 8 bits for each of the luma, blue-difference, red-difference and black chroma components. |
Modifier and Type | Method and Description |
---|---|
int |
IColorConverter.convert(PixelDataFormat sourceFormat,
byte[] data,
int offset,
int bitStart,
int samplesCount,
int linesCount,
PixelDataFormat destFormat,
byte[] outputData,
int outputOffset) |
void |
IIndexedColorConverter.fillIndexedtoIndexedMap(byte[] map,
PixelDataFormat sourceFormat,
PixelDataFormat destFormat) |
static boolean |
PixelDataFormat.op_Equality(PixelDataFormat pixelFormat1,
PixelDataFormat pixelFormat2)
Returns result of equality for two
PixelDataFormat classes. |
static boolean |
PixelDataFormat.op_Inequality(PixelDataFormat pixelFormat1,
PixelDataFormat pixelFormat2)
Returns result of non-equality for two
PixelDataFormat classes. |
void |
RawDataSettings.setPixelDataFormat(PixelDataFormat value)
Gets or sets the pixel data format
|