home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / graphics / gif-util.zip / GIFCLIP.DOC < prev    next >
Text File  |  1989-08-01  |  1KB  |  38 lines

  1.             GifClip
  2.             -------
  3.  
  4. Program to clip images in GIF files. Only one image in GIF file can be modified
  5. at a time. Neither image relative position to screen, nor screen sizes are
  6. modified (use GifPos for that).
  7.  
  8. Usage:
  9. ------
  10.  
  11. Usage: GifClip [-i Xmin Ymin Xmax Ymax] [-n n Xmin Ymin Xmax Ymax] [-h] GifFile
  12.  
  13.   If no GifFile is given, GifClip will try to read stdin for GIF file.
  14.  
  15. Memory required:
  16. ----------------
  17.  
  18. Line.
  19.  
  20.  
  21. Options:
  22. --------
  23.  
  24. 1. [-i Xmin Ymin Xmax Ymax] : Clip first image to the dimensions as specified
  25.    by the 4 coordinates (Xmin Ymin Xmax Ymax) of a box clipping region.
  26.      For example: '-i 11 22 33 44' will crop the box from top left [11,22]
  27.    to bottom right [33,44] out of the first image.
  28.      If the first parameter is bigger than third one (Xmin > Xmax) - they are
  29.    swapped. Same for Y.
  30.      Dimensions of cropped image must be confined to original image width and
  31.    height. Note the clipped image include both min & max boundry, and image
  32.    of width W can have coordinates 0 to W-1 (zero based).
  33.      Only one of -i or -n can be specified.
  34. 2. [-n n Xmin Ymin Xmax Ymax] : same as -i above but for the nth image:
  35.    '-n 1 11 22 33 44' is exactly the same as the example in -i. Only one of
  36.    -i or -n can be specified.
  37. 3. [-h] : print one command line help, similar to Usage above.
  38.