AFK Arena LZAP: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>Ikskoks
imported>Ikskoks
Line 13: Line 13:
// header
// header
4 bytes (char) - signature // "LZ4PNG"
4 bytes (char) - signature // "LZ4PNG"
4 bytes (uint32) - unknown
4 bytes (uint32) - uncompressed file size


// data
number_of_files *
x bytes - file data  // compressed with LZ4
{
  4 bytes (uint32) - compressed file size (big endian)
  4 bytes (uint32) - uncompressed file size (little endian)
 
  x bytes - file data  // compressed with LZ4
}
</pre>
</pre>
</div>
</div>

Revision as of 19:08, 22 August 2022

Back to index | Edit this page

LZAP

  • Format Type : Image
  • Endian Order : Little Endian
  • Signature : LZ4PNG / PKM 10 / PKM


Format Specifications

// header
4 bytes (char) - signature // "LZ4PNG"

number_of_files *
{
   4 bytes (uint32) - compressed file size (big endian)
   4 bytes (uint32) - uncompressed file size (little endian)

   x bytes - file data  // compressed with LZ4
}

Notes and Comments

  • This file format uses LZ4 compression.
  • LZAP file seems to be container for PKM image file with "PKM 10" signature.

Games

List of games using this file format:

  • AFK Arena (Android) (*.LZAP)

QuickBMS Script

Compatible Programs

None.