I have a variable data
, the type of variable is: TIdBytes
.
Variable contains some data encoded with gzip.
How to decode this data?
I have a variable data
, the type of variable is: TIdBytes
.
Variable contains some data encoded with gzip.
How to decode this data?
If you want to decode the data manually, then look at the
DecompressGZipStream()
method of theTIdCompressorZLib
component, or theTDecompressionStream
class orIndy/DecompressStream()
functions in theIdZLib.pas
unit.