Image file
From Worms Knowledge Base
Revision as of 20:14, 30 June 2020 by Pac-Man (Talk | contribs) (Add OW and WWPA icons. Display possible alignment in table.)
(Up to File formats)
Team17's image files (typically with an .img file extension) are usually compressed palleted images.
File format
Game | Type | Size | Name | Description |
---|---|---|---|---|
uint8[4] | 4 | Signature | Always "IMG\x1A". | |
uint32 | 4 | File Size | Complete length of the file, in bytes. | |
string0 | - | Description | An optional, null-terminated string, only present in some Worms 2 and Online Worms images. | |
uint8 | 1 | Bits Per Pixel | Usually 8 (256 colors). | |
uint8 | 1 | Image Flags | A bit field of the following values:
| |
uint16 | 2 | Palette Color Count | Only if palletized, excludes black[1]. | |
rgb[colorCount] | 3 × color count | Palette Colors | Only if palletized, excludes black[1]. 3 bytes each color (RGB). | |
uint16 | 2 | Image Width | In pixels. | |
uint16 | 2 | Image Height | In pixels. | |
align4 | - | Alignment | Only when embedded in land.dat files, aligns to the next 4-byte boundary. | |
uint8[] | - | Image Data | Raw image data, according to the above. |