![]() |
![]() |
Krrios File Format Reference
GumpsData File: GumpArt.mul Sizes:short width = ((extra >> 16) & 0xFFFF);short height = (extra & 0xFFFF); Data:int[height] lookupTable;RLE Data... RLE stands for "run-length encoding", it is a simple form of image compression. This implementation of the RLE compression is treated as 32-bit values, broken up into two 16-bit values RLE Packet:
for ( int i = 0; i < Run; i++ ) { SetPixel( x + i, y, Color ); } x += Run; See Also: - UO Color Format - Index Files |