home *** CD-ROM | disk | FTP | other *** search
/ World of Graphics / WOGRAPH.BIN / 270.GIFV.SLT < prev    next >
Text File  |  1993-02-17  |  622b  |  21 lines

  1. ;
  2. ; GIFV.SLT
  3. ; Take every GIF file in G:\IMAGES and make them GRAY scaled using an EGA
  4. ; monitor and keeping all 256 colors that may be in the image. This way you can
  5. ; use a cheapo monitor to process your image files!
  6. ; It also will keep the original screen size intact so that when a viewer tries
  7. ; to display the NEW image it won't try to switch into EGA mode!
  8. ;
  9.         EGA-MODE
  10.         EGA-COLOR-ADJUST OFF
  11.         KEEP-SCREEN-SIZE
  12.         slide-type-Fade
  13.         change-path G:\IMAGES\*.GIF
  14. :loop
  15.         loadnext        :exit
  16.         gray
  17.         write G
  18.         goto :loop
  19. :exit
  20.         ENTER
  21.