Forum > Documentation (Maintaining -)

fix for docs about TDecompressionStream.Create

(1/1)

domasz:
Original text:

--- Quote ---Description

Create creates and initializes a new instance of the TDecompressionStream class. It calls the inherited Create and passes it the Source stream. The source stream is the stream from which the compressed (deflated) data is read.

If ASkipHeader is true, then the gzip data header is skipped, allowing TDecompressionStream to read deflated data in a .zip file. (this data does not have the gzip header record prepended to it).

Note that the source stream is by default not owned by the decompression stream, and is not freed when the decompression stream is destroyed.
--- End quote ---

TDecompressionStream cannot handle gzip data (unlike Delphi implementation which has a special 15+16 mode). It can only handle zlib data and pure deflate.
So the docs should be:



--- Quote ---Description

Create creates and initializes a new instance of the TDecompressionStream class. It calls the inherited Create and passes it the Source stream. The source stream is the stream from which the compressed (deflated) data is read.

If ASkipHeader is true, then the zlib data header is skipped, allowing TDecompressionStream to read deflated data in a .zip file. (this data does not have the zlib header record prepended to it).

Note that the source stream is by default not owned by the decompression stream, and is not freed when the decompression stream is destroyed.
--- End quote ---

Navigation

[0] Message Index

Go to full version