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 the TIdCompressorZLib
component, or the TDecompressionStream
class or Indy/DecompressStream()
functions in the IdZLib.pas
unit.