Interface DIB
-
interface DIB
DIB- Version:
- $Id: DIB.java,v 1.0 Apr 8, 2008 1:43:04 PM haraldk Exp$
- See Also:
- BMP file format (Wikipedia), ICO file format (Wikipedia)
-
-
Field Summary
Fields Modifier and Type Field Description static int
BITMAP_CORE_HEADER_SIZE
BITMAPCOREHEADER size, OS/2 V1static int
BITMAP_INFO_HEADER_SIZE
BITMAPINFOHEADER size, Windows 3.0 and later.static int
BITMAP_V2_INFO_HEADER_SIZE
static int
BITMAP_V3_INFO_HEADER_SIZE
static int
BITMAP_V4_INFO_HEADER_SIZE
BITMAPV4HEADER size, Windows 95/NT4 and later.static int
BITMAP_V5_INFO_HEADER_SIZE
BITMAPV5HEADER size, Windows 98/2000 and later.static int
BMP_FILE_HEADER_SIZE
static int
COMPRESSION_ALPHA_BITFIELDS
RGBA bitfield masks.static int
COMPRESSION_BITFIELDS
BI_BITFIELDS, OS2_V2: Huffman 1D compression.static int
COMPRESSION_JPEG
static int
COMPRESSION_PNG
static int
COMPRESSION_RGB
BI_RGB: No compression.static int
COMPRESSION_RLE4
BI_RLE4: 4 bit run-length encoding (RLE).static int
COMPRESSION_RLE8
BI_RLE8: 8 bit run-length encoding (RLE).static int
LCS_CALIBRATED_RGB
static int
LCS_sRGB
static int
LCS_WINDOWS_COLOR_SPACE
static int
OS2_V2_HEADER_16_SIZE
Strange BITMAPCOREHEADER size, OS/2 V2, but only first 16 bytes...static int
OS2_V2_HEADER_SIZE
BITMAPCOREHEADER size, OS/2 V2static long
PNG_MAGIC
PNG "magic" identifierstatic int
PROFILE_EMBEDDED
static int
PROFILE_LINKED
static int
TYPE_CUR
static int
TYPE_ICO
-
-
-
Field Detail
-
TYPE_ICO
static final int TYPE_ICO
- See Also:
- Constant Field Values
-
TYPE_CUR
static final int TYPE_CUR
- See Also:
- Constant Field Values
-
BMP_FILE_HEADER_SIZE
static final int BMP_FILE_HEADER_SIZE
- See Also:
- Constant Field Values
-
BITMAP_CORE_HEADER_SIZE
static final int BITMAP_CORE_HEADER_SIZE
BITMAPCOREHEADER size, OS/2 V1- See Also:
- Constant Field Values
-
OS2_V2_HEADER_16_SIZE
static final int OS2_V2_HEADER_16_SIZE
Strange BITMAPCOREHEADER size, OS/2 V2, but only first 16 bytes...- See Also:
- Constant Field Values
-
OS2_V2_HEADER_SIZE
static final int OS2_V2_HEADER_SIZE
BITMAPCOREHEADER size, OS/2 V2- See Also:
- Constant Field Values
-
BITMAP_INFO_HEADER_SIZE
static final int BITMAP_INFO_HEADER_SIZE
BITMAPINFOHEADER size, Windows 3.0 and later. This is the most commonly used header for persistent bitmaps.- See Also:
- Constant Field Values
-
BITMAP_V2_INFO_HEADER_SIZE
static final int BITMAP_V2_INFO_HEADER_SIZE
- See Also:
- Constant Field Values
-
BITMAP_V3_INFO_HEADER_SIZE
static final int BITMAP_V3_INFO_HEADER_SIZE
- See Also:
- Constant Field Values
-
BITMAP_V4_INFO_HEADER_SIZE
static final int BITMAP_V4_INFO_HEADER_SIZE
BITMAPV4HEADER size, Windows 95/NT4 and later.- See Also:
- Constant Field Values
-
BITMAP_V5_INFO_HEADER_SIZE
static final int BITMAP_V5_INFO_HEADER_SIZE
BITMAPV5HEADER size, Windows 98/2000 and later.- See Also:
- Constant Field Values
-
COMPRESSION_RGB
static final int COMPRESSION_RGB
BI_RGB: No compression. Default.- See Also:
- Constant Field Values
-
COMPRESSION_RLE8
static final int COMPRESSION_RLE8
BI_RLE8: 8 bit run-length encoding (RLE).- See Also:
- Constant Field Values
-
COMPRESSION_RLE4
static final int COMPRESSION_RLE4
BI_RLE4: 4 bit run-length encoding (RLE).- See Also:
- Constant Field Values
-
COMPRESSION_BITFIELDS
static final int COMPRESSION_BITFIELDS
BI_BITFIELDS, OS2_V2: Huffman 1D compression. V2: RGB bit field masks, V3+: RGBA.- See Also:
- Constant Field Values
-
COMPRESSION_JPEG
static final int COMPRESSION_JPEG
- See Also:
- Constant Field Values
-
COMPRESSION_PNG
static final int COMPRESSION_PNG
- See Also:
- Constant Field Values
-
COMPRESSION_ALPHA_BITFIELDS
static final int COMPRESSION_ALPHA_BITFIELDS
RGBA bitfield masks.- See Also:
- Constant Field Values
-
LCS_CALIBRATED_RGB
static final int LCS_CALIBRATED_RGB
- See Also:
- Constant Field Values
-
LCS_sRGB
static final int LCS_sRGB
- See Also:
- Constant Field Values
-
LCS_WINDOWS_COLOR_SPACE
static final int LCS_WINDOWS_COLOR_SPACE
- See Also:
- Constant Field Values
-
PROFILE_LINKED
static final int PROFILE_LINKED
- See Also:
- Constant Field Values
-
PROFILE_EMBEDDED
static final int PROFILE_EMBEDDED
- See Also:
- Constant Field Values
-
PNG_MAGIC
static final long PNG_MAGIC
PNG "magic" identifier- See Also:
- Constant Field Values
-
-