User Tools

Site Tools


api:dk11:delphi:giscompression.decompressdeflatebuffer_tbytes_integer_integer_tbytes_integer

Table of Contents

DecompressDeflateBuffer method

DK11 for Delphi | GisCompression.DecompressDeflateBuffer | Methods

Decompress a deflate buffer.

Syntax

// Delphi
procedure DecompressDeflateBuffer(
  const _source : TBytes;
  const _offset : Integer;
  const _size : Integer;
  var _output : TBytes;
  var _length : Integer
);
// C++ Builder
extern DELPHI_PACKAGE void DecompressDeflateBuffer(
  TBytes* const _source,
  const int _offset,
  const int _size,
  TBytes* &_output,
  int &_length
);

Parameters

Name Type Description
_source TBytes compressed buffer
_offset Integer offset in buffer
_size Integer size of buffer
_output TBytes decompressed buffer
_length Integer length of decompressed buffer
2017/09/04 11:12

Page Tools