back to Table of Contents


LzwUnpack$ (function)

Decompress the given LZW packed data back to its original data format. This function will check the internally encoded signature to make sure the given data is really packed and originated by LzwPack$(). After decompression it will also check the unpacked data against its original checksum (CRC32) to recognize eventual data corruption.


SYNTAX:

unpacked$ = LzwUnpack$ (LzwData$)

INPUTS:

LzwData$ (STRING)

Hidden feature inputs:

RESULT:

unpacked$ (STRING)


back to Table of Contents