home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161b.iso / full / delphi / INFO / EXTRAS / EXTRAS.TXT
Encoding:
Text File  |  1997-03-19  |  2.6 KB  |  44 lines

  1. The Delphi CD-ROM disk includes a set of add-in units in the INFO\EXTRAS directory.
  2. You will find three subdirectories, FIF, JPEG, and ZLIB.  Their contents are as
  3. follows:
  4.  
  5. FIF:
  6.    This directory includes the Delphi unit files FIF.pas and FIFDLLs.pas, which 
  7.    implement a graphic class (TFIFImage) and its helper object (TFIFData) for
  8.    images compressed using Iterated System's FIF format. TFIFImage provides read-
  9.    only access to FIF files.  To create or modify FIF files, you must use Iterated
  10.    System's Fractal Imager.
  11.  
  12.    In order to use the FIF units, your application must use the FIF decoding DLL.  
  13.    Run the Fd12w32.exe executable found in the INFO\EXTRAS\FIF directory to install
  14.    the FIF decoding DLL.
  15.  
  16. JPEG:
  17.    This directory includes the Delphi unit files JConsts.pas and JPeg.pas, which 
  18.    were used to generate the .DCU files installed with Delphi.  The JPeg unit (and
  19.    the .DCUs installed with Delphi) defines a graphic class (TJPEGImage) and its
  20.    helper object (TJPEGData). The .DCUs installed with Delphi are completely self-
  21.    sufficient -- you do not need any of the files in the INFO\EXTRAS\JPEG directory
  22.    in order to use these.  However, if you wish to read or alter the JPEG source, 
  23.    you may edit the unit files in the JPEG directory. If you recompile the units in
  24.    the INFO\EXTRAS\JPEG directory, you must link in the object files for the Independent
  25.    JPEG group's (IPG) implementation of the JPEG compression/decompression standard.
  26.    The OBJ files that comprise this JPEG library are included in the OBJ subdirectory.
  27.    If you wish to view the source files for those OBJ files, you can look in the SRC
  28.    directory. The SRC directory also includes a readme file that provides more
  29.    information, including distribution information.
  30.  
  31.  
  32. ZLIB:
  33.    This directory includes the Delphi ZLIB unit file, which implements utilities 
  34.    for compressing or decompressing information using the freely distributable
  35.    library written by Jean-loup Gailly and Mark Adler.  This unit provides two
  36.    stream objects, TCompressionStream and TDecompressionStream, that can be used
  37.    to compress information as it is written, or decompress information as it is
  38.    read.  It also includes the global CompressBuf and DecompressBuf procedures to
  39.    compress and decompress information using buffers. To use the ZLIB unit, you
  40.    must link the OBJ files in the OBJ directory to your Delphi application.  The C
  41.    source for these .OBJ files is included in the SRC directory, along with a
  42.    readme file that provides more information about the library and a disclaimer
  43.    by the authors.
  44.