home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0040 - 0049 / ibm0040-0049 / ibm0040.tar / ibm0040 / IMGPROC.ZIP / README.DOC < prev    next >
Encoding:
Text File  |  1990-10-15  |  8.6 KB  |  186 lines

  1.  
  2.         Copyright (c) John Wiley & Sons, Inc. 1990. All rights reserved.
  3.         
  4.        
  5.         Reproduction or translation of any part of this work beyond that
  6.         permitted in Section 117 of the 1976 United States Copyright Act
  7.         without the express written permission of the copyright owner is
  8.         unlawful. Requests for permission or further information should
  9.         be addressed to the Permissions Department, John Wiley & Sons,
  10.         Inc. The purchaser may make backup copies for his/her own use 
  11.         only and not for distribution or resale. The Publisher assumes 
  12.         no responsibility for errors, omissions, or damages, including, 
  13.         without limitation, damages caused by the use of these programs 
  14.         or from the use of the information contained herein.
  15.         
  16.         
  17.                                The Companion Disk
  18.         
  19.         
  20.         The companion disk contains all of the code described and listed 
  21.         in this book along with a selection of digitized images for your 
  22.         viewing and image processing pleasure. The companion disk is  
  23.         available directly from the publisher. Please send in the tear 
  24.         out form provided along with $49.95 to receive your copy of the 
  25.         companion disk. The use of this disk will save hours of typing 
  26.         and program debugging caused by typing errors.
  27.         
  28.         
  29.         
  30.         All files on the companion disk are in archive format. This 
  31.         was necessary because of the large amount of source code, 
  32.         executable files and images provided. To use these files, they 
  33.         must be "de-arced". This is accomplished using the "xarc.exe" 
  34.         utility program provided on the disk. To de-arc the files 
  35.         contained in the "GALLERY.ARC" file, for example, the following 
  36.         command would be used:
  37.         
  38.                   xarc gallery.arc "path to destination" <enter>
  39.         
  40.         This command would be typed at the DOS command prompt.  Since 
  41.         the disk is tightly packed, you may have to copy the file you
  42.         wish to de-arc onto a different disk before de-arcing.
  43.         
  44.         
  45.         Two types of image files are included on the companion disk 
  46.         in the "GALLERY.ARC" file. These are PCX files and autodisplay 
  47.         (".COM") files. PCX files require the use of the "view.exe" 
  48.         program to display. Autodisplay files will display themselves on 
  49.         a VGA equipped computer when their filename is typed at the Dos 
  50.         command prompt.
  51.         
  52.         
  53.         
  54.         All C code is directly compilable by Turbo C version 2.0. 
  55.         Some code changes will be required for use with other C 
  56.         compilers. The list below describes the types of files to be 
  57.         found on the companion disk. The file, "readme.doc" on the 
  58.         companion disk, describes last minute changes to the code that 
  59.         did not make it into the printing of this book. Please read this 
  60.         file carefully.
  61.         
  62.         
  63.         
  64.         Filename Extension        Type/Content of file
  65.         ----------------------------------------------------------------
  66.               ".C"          C source code files 
  67.               ".H"          C header (include) files
  68.              ".PRJ"         Turbo C's "project make" files
  69.              ".ASM"         assembler language source code files
  70.              ".EXE"         directly executable program files
  71.              ".COM"         directly executable autodisplay image files
  72.              ".PCX"         PCX format image files
  73.  
  74.  
  75.                             Companion Disks Contents
  76.         
  77.         File: README.DOC - Last minute information file (this file).
  78.         
  79.         File: C1.ARC
  80.         VGAGRAPH.ASM - Small memory model version of the 
  81.                        Video Mode 13H Assembler Language Support
  82.         VGA.H        - VGA Function Library header file
  83.         VGA.C        - VGA Function Library 
  84.         MISC.H       - File of miscellaneous defines
  85.         
  86.         File: C4.ARC
  87.         DIGITIZER.ASM - The low level digitizer driver code
  88.         DIGITIZER.H   - The low level digitizer driver header file
  89.         TEST1.C       - Digitizer test program one 
  90.         TEST1.PRJ     - Digitizer test program one project make file 
  91.         TEST1.EXE     - Executable test program one
  92.         TEST2.PRJ     - Digitizer test program two project make file 
  93.         TEST2.C       - Digitizer test program two 
  94.         TEST2.EXE     - Executable test program two
  95.         
  96.         File: C5GVIDEO.ARC
  97.         GVIDEO.PRJ   - Generic image example program project make file
  98.         GVIDEO.C     - Generic image example program
  99.         PVIDEO.PRJ   - Focus window example program project make file
  100.         PVIDEO.C     - Focus window example program
  101.         ALLVIDEO.PRJ - All resolution example program project make file
  102.         ALLVIDEO.C   - All resolution example program
  103.         ALLVIDEO.EXE - Executable example program
  104.         ACQUIRE.PRJ  - 320x200 image aspect ratio corrected program 
  105.                        project make file
  106.         ACQUIRE.C    - See above
  107.         
  108.         File: C5CVIDEO.ARC
  109.         CVIDEO.PRJ   - Full color example program project make file
  110.         CVIDEO.C     - Full color example program 
  111.         IMAGECOM.ASM - Autodisplay program
  112.         
  113.         File: C6PCX.ARC
  114.         PCX.H        - PCX function library header file
  115.         PCX.C        - PCX function library
  116.         COMPRESS.ASM - Assembler language RLL encoder program
  117.         MISC.H       - File of miscellaneous defines
  118.         
  119.         File: C6TIFF.ARC
  120.         TIFFINFO.DOC- Additional details about the tiff library
  121.                       functions.
  122.         TIFF.H      - TIFF header file one
  123.         TIFFIO.H    - TIFF header file two
  124.         TIFFINTF.H  - TIFF interface header file
  125.         CCITT.C     - Stubs for CCITT compression code
  126.         COMPRESS.C  - Compression algorithm selector code
  127.         DIR.C       - Directory parsing and building code
  128.         DUMPMODE.C  - Uncompressed image functions
  129.         ERROR.C     - Error and warning functions
  130.         IO.C        - File I/O functions
  131.         LZW.C       - Lempel-Ziv & Welch compression/expansion functions
  132.         PACKBITS.C  - PackBits compression/expansion functions
  133.         PRINT.C     - TIFF directory listing functions
  134.         TIFF.C      - TIFF function library code
  135.         SWAB.C      - Byte swapping code
  136.         
  137.         File: C6VIEW.ARC
  138.         VGAGRAPH.ASM - Medium memory model version of mode 13H graphic functions
  139.         VIEW.PRJ     - The view program project make file
  140.         VIEW.C       - The view program (medium memory model)
  141.         VIEW.EXE     - An executable version of the view program
  142.         
  143.         File: C7.ARC
  144.         PRTSIMP.C - A bonus threshold printing program
  145.         PRINTER.H - Print program header file
  146.         PRINT.PRJ - Print program project make file
  147.         PRINT.C   - Print program
  148.         
  149.         File: C8.ARC
  150.         IMAGESUP.H - Image processing support function header file
  151.         IMAGESUP.C - Image processing support functions
  152.         
  153.         File: C9.ARC
  154.         PTPROCESS.H - Point process header file
  155.         PTPROCESS.C - Point process function library
  156.         PTTEST.PRJ  - Point process example program project make file
  157.         PTTEST.C    - Point process example program
  158.         
  159.         File: C10.ARC
  160.         ARPROCESS.H - Area process header file
  161.         ARPROCESS.C - Area process function library
  162.         ARTEST.PRJ  - Area process example program project make file
  163.         ARTEST.C    - Area process example program
  164.         
  165.         File: C11.ARC
  166.         FRPROCESS.H - Frame process header file
  167.         FRPROCESS.C - Frame process function library
  168.         FRTEST.PRJ  - Frame process example program project make file
  169.         FRTEST.C    - Frame process example program
  170.         
  171.         File: C12.ARC
  172.         GEPROCESS.H - Geometric process header files
  173.         GEPROCESS.C - Geometric process function library
  174.         GETEST.PRJ  - Geometric process example program project make file
  175.         GETEST.C    - Geometric process example program
  176.         P2CH12L3.C  - Aspect ration correction code fragment
  177.         
  178.         File: GALLERY.ARC
  179.         
  180.         This archived file contains a miscellaneous collection of images 
  181.         some from the book other not. Remember any files with the ".PCX" 
  182.         extension  must be viewed with the "view.exe" program. Any files 
  183.         with  the ".COM" extension will automatically display themselves 
  184.         when their filename is typed at the DOS command line.
  185.         
  186.