[Overview][Types][Classes][Index] |
Write data to be compressed
Source position: zstream.pp line 91
public function TGZFileStream.write( |
const buffer; |
count: LongInt |
):LongInt; override; |
buffer |
|
Memory location containing the data to be written. |
count |
|
Number of bytes to write. |
Number of uncompressed bytes written
Write writes Count bytes from Buffer to the compressed file. The data is compressed as it is written, so ideally, less than Count bytes end up in the compressed file. Note that it is not possible to write to the stream if it was opened in read mode.
The function returns the number of (uncompressed) bytes that were actually written.
In case of an error, an EZlibError exception is raised.
|
Create a new instance of TGZFileStream |
|
|
Read data from the compressed file |
|
|
Set the position in the compressed stream. |