ASTC.LZMA

Textures, recreate headers, conversions, algorithms and parsing of image files
JM555
Posts: 12
Joined: Tue Nov 14, 2017 1:16 am

ASTC.LZMA

Post by JM555 »

From a mobile game, apparently this is a highly compressed file (ASTC) in a LZMA container. I tried to decompress the LZMA container, no luck at all, not on 7Zip, other unarchivers. Is there a different LZMA library? I attached three of the files. Thank you in advance for any help.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: ASTC.LZMA

Post by aluigi »

Use this quickbms script for the decompression:

Code: Select all

comtype lzma_dynamic
get NAME basename
get SIZE asize
clog NAME 0 SIZE SIZE
JM555
Posts: 12
Joined: Tue Nov 14, 2017 1:16 am

Re: ASTC.LZMA

Post by JM555 »

Thank you thank you very much! It works perfectly!