RemyLebeau e4512d73e0 Merging source from latest Indy 10 public revision. 8 years ago
..
i386-Win32-ZLib 5276a7e9df Moving files around 9 years ago
x86_64-Win64-ZLib 5276a7e9df Moving files around 9 years ago
ZLib.pas e4512d73e0 Merging source from latest Indy 10 public revision. 8 years ago
ZLibConst.pas 5276a7e9df Moving files around 9 years ago
adler32.c 5276a7e9df Moving files around 9 years ago
adler32.obj 5276a7e9df Moving files around 9 years ago
build.bat 5276a7e9df Moving files around 9 years ago
compress.c 5276a7e9df Moving files around 9 years ago
compress.obj 5276a7e9df Moving files around 9 years ago
crc32.c 5276a7e9df Moving files around 9 years ago
crc32.h 5276a7e9df Moving files around 9 years ago
crc32.obj 5276a7e9df Moving files around 9 years ago
deflate.c 5276a7e9df Moving files around 9 years ago
deflate.h 5276a7e9df Moving files around 9 years ago
deflate.obj 5276a7e9df Moving files around 9 years ago
example.c 5276a7e9df Moving files around 9 years ago
example.obj 5276a7e9df Moving files around 9 years ago
gzclose.c 5276a7e9df Moving files around 9 years ago
gzclose.obj 5276a7e9df Moving files around 9 years ago
gzguts.h 5276a7e9df Moving files around 9 years ago
gzlib.c 5276a7e9df Moving files around 9 years ago
gzlib.obj 5276a7e9df Moving files around 9 years ago
gzread.c 5276a7e9df Moving files around 9 years ago
gzread.obj 5276a7e9df Moving files around 9 years ago
gzwrite.c 5276a7e9df Moving files around 9 years ago
gzwrite.obj 5276a7e9df Moving files around 9 years ago
infback.c 5276a7e9df Moving files around 9 years ago
infback.obj 5276a7e9df Moving files around 9 years ago
inffast.c 5276a7e9df Moving files around 9 years ago
inffast.h 5276a7e9df Moving files around 9 years ago
inffast.obj 5276a7e9df Moving files around 9 years ago
inffixed.h 5276a7e9df Moving files around 9 years ago
inflate.c 5276a7e9df Moving files around 9 years ago
inflate.h 5276a7e9df Moving files around 9 years ago
inflate.obj 5276a7e9df Moving files around 9 years ago
inftrees.c 5276a7e9df Moving files around 9 years ago
inftrees.h 5276a7e9df Moving files around 9 years ago
inftrees.obj 5276a7e9df Moving files around 9 years ago
minigzip.c 5276a7e9df Moving files around 9 years ago
minigzip.obj 5276a7e9df Moving files around 9 years ago
readme.txt 5276a7e9df Moving files around 9 years ago
trees.c 5276a7e9df Moving files around 9 years ago
trees.h 5276a7e9df Moving files around 9 years ago
trees.obj 5276a7e9df Moving files around 9 years ago
uncompr.c 5276a7e9df Moving files around 9 years ago
uncompr.obj 5276a7e9df Moving files around 9 years ago
zconf.h 5276a7e9df Moving files around 9 years ago
zlib.h 5276a7e9df Moving files around 9 years ago
zlib.lib 5276a7e9df Moving files around 9 years ago
zlibd32.mak 5276a7e9df Moving files around 9 years ago
zutil.c 5276a7e9df Moving files around 9 years ago
zutil.h 5276a7e9df Moving files around 9 years ago
zutil.obj 5276a7e9df Moving files around 9 years ago

readme.txt


Overview
========

This directory contains an update to the ZLib interface unit,
distributed by Borland as a Delphi supplemental component.

The original ZLib unit is Copyright (c) 1997,99 Borland Corp.,
and is based on zlib version 1.0.4. There are a series of bugs
and security problems associated with that old zlib version, and
we recommend the users to update their ZLib unit.


Summary of modifications
========================

- Improved makefile, adapted to zlib version 1.2.1.

- Some field types from TZStreamRec are changed from Integer to
Longint, for consistency with the zlib.h header, and for 64-bit
readiness.

- The zlib_version constant is updated.

- The new Z_RLE strategy has its corresponding symbolic constant.

- The allocation and deallocation functions and function types
(TAlloc, TFree, zlibAllocMem and zlibFreeMem) are now cdecl,
and _malloc and _free are added as C RTL stubs. As a result,
the original C sources of zlib can be compiled out of the box,
and linked to the ZLib unit.


Suggestions for improvements
============================

Currently, the ZLib unit provides only a limited wrapper around
the zlib library, and much of the original zlib functionality is
missing. Handling compressed file formats like ZIP/GZIP or PNG
cannot be implemented without having this functionality.
Applications that handle these formats are either using their own,
duplicated code, or not using the ZLib unit at all.

Here are a few suggestions:

- Checksum class wrappers around adler32() and crc32(), similar
to the Java classes that implement the java.util.zip.Checksum
interface.

- The ability to read and write raw deflate streams, without the
zlib stream header and trailer. Raw deflate streams are used
in the ZIP file format.

- The ability to read and write gzip streams, used in the GZIP
file format, and normally produced by the gzip program.

- The ability to select a different compression strategy, useful
to PNG and MNG image compression, and to multimedia compression
in general. Besides the compression level

TCompressionLevel = (clNone, clFastest, clDefault, clMax);

which, in fact, could have used the 'z' prefix and avoided
TColor-like symbols

TCompressionLevel = (zcNone, zcFastest, zcDefault, zcMax);

there could be a compression strategy

TCompressionStrategy = (zsDefault, zsFiltered, zsHuffmanOnly, zsRle);

- ZIP and GZIP stream handling via TStreams.


--
Cosmin Truta