home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 326.lha / screenclip_v1.0 / Header.txt < prev    next >
Text File  |  1989-12-30  |  3KB  |  81 lines

  1.  
  2. ScreenClip V1.0
  3.  
  4. (C)CopyRight 1989 by Christopher J. Conrad
  5.  
  6. Function:  ScreenClip will copy an area of the active
  7.            screen and convert it to ascii data statements.
  8.            The user can specify 'C' or 'Assembly' language format.
  9.            Data statements will be structured in BitMap format.
  10.  
  11. Format:    ScreenClip  [-dc]  X  Y  +X  +Y  Name
  12.  
  13.            The first field specifies options. Option
  14.            'd' will cause the program to wait 4 seconds
  15.            before getting any data from the screen.  This
  16.            gives the users time to activate a different
  17.            screen before the program copies the data. If
  18.            this option is left out then the program will
  19.            not delay.
  20.  
  21.            Option 'c' will specify output data to be in 'C'
  22.            language format.  Assembly format source is the
  23.            default.
  24.  
  25.            The 'X' and 'Y' parameters specify the upper-
  26.            left coordinates of the rectangle that will
  27.            be copied relative to the upper-left corner of
  28.            the active screen.
  29.  
  30.            The '+X' and '+Y' parameter specify the size of
  31.            the rectangle that will be copied and converted
  32.            to data statements.
  33.  
  34.            Finally 'Name' will specify the name you want to
  35.            give your rectangle.  The name be included in
  36.            the output listings, thus making each set of
  37.            data statements unique.
  38.  
  39. Also note that you will probably want to use redirection
  40. parameters when calling ScreenClip.  Using redirection
  41. paramters, you can send your output to a disk or printer.
  42. The redirection parameters should appear right after the
  43. program name.
  44.  
  45.  Example:
  46.    'ScreenClip >df1:out.asm 0 0 60 20 BitName'  will send
  47.    your output to the disk drive with the filename
  48.    'out.asm'.
  49.  
  50.   'ScreenClip >>df1:out.asm 0 0 60 20 BitName' will append
  51.    your output to the file 'out.asm' on the disk drive.
  52.  
  53.  
  54. ------------------------------------------------------------
  55.  
  56. This program was written in 100 percent assembly language.
  57. It uses the blitter to word alian screen data before
  58. output, so you'll need enough memory to hold a copy of your
  59. image.  This program was tested in low memory situations
  60. and behaves quite well.  Note that the rectangle to be
  61. copied will be padded with 0's to the greatest word boundry.
  62.  
  63. This program is freely distributable provided all files in this
  64. archive remain intact.  Feel free to send a few dollars if you find
  65. this program useful.
  66.  
  67. Send flames, bug reports, etc to:
  68.  
  69.     CJC105@psuvm.psu.edu (bitnet)
  70.               -or-
  71.     CJC@psuhcx.psu.edu
  72.  
  73. School address:
  74.  
  75.     Chris Conrad
  76.     600 Pollock Rd, Apt 4202a
  77.     State College, PA 16801
  78.  
  79.     (814) 862-9044
  80.  
  81.