falcon4:file_formats:apl_fileformat
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
falcon4:file_formats:apl_fileformat [2009/02/06 22:50] – lightning | falcon4:file_formats:apl_fileformat [2024/07/31 08:50] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== .APL File Format ====== | + | ====== |
+ | |||
+ | [[https:// | ||
An APL is a palettized image with the ability to store alpha values in the palette. | An APL is a palettized image with the ability to store alpha values in the palette. | ||
- | **NOTE: | + | **NOTE: |
===== Specification ===== | ===== Specification ===== | ||
APL file format: | APL file format: | ||
Line 13: | Line 16: | ||
===== Reading an .APL file ===== | ===== Reading an .APL file ===== | ||
- | * check the first DWORD (4 bytes) to see that it equals '' | + | |
- | * then check the next WORD (2 bytes), this is the width, in pixels, of the image\\ | + | * then check the next WORD (2 bytes), this is the width, in pixels, of the image\\ |
- | * then check the next WORD (2 bytes), this is the height, in pixels, of the image\\ | + | * then check the next WORD (2 bytes), this is the height, in pixels, of the image\\ |
- | * then load the next 256 DWORDs (1024 bytes) into an array, where each DWORD (4 bytes) represents a single palette entry. | + | * then load the next 256 DWORDs (1024 bytes) into an array, where each DWORD (4 bytes) represents a single palette entry. |
- | * the next (width * height) bytes represent the image data itself, one byte per pixel, with one row's worth of pixel data coming first, then the next row's worth of pixel data, etc. The first byte represents the upper-left pixel in the image/ | + | * the next (width * height) bytes represent the image data itself, one byte per pixel, with one row's worth of pixel data coming first, then the next row's worth of pixel data, etc. The first byte represents the upper-left pixel in the image/ |
The byte value associated with each pixel, provides an index into the palette array, telling you which palette entry to use for determining the color to use for rendering that pixel. Just look up the corresponding palette entry to get the color data for that pixel, as well as the alpha channel value. If the alpha component is set to '' | The byte value associated with each pixel, provides an index into the palette array, telling you which palette entry to use for determining the color to use for rendering that pixel. Just look up the corresponding palette entry to get the color data for that pixel, as well as the alpha channel value. If the alpha component is set to '' | ||
falcon4/file_formats/apl_fileformat.1233960647.txt.gz · Last modified: 2009/02/06 22:50 (external edit)