home *** CD-ROM | disk | FTP | other *** search
/ World of Graphics / WOGRAPH.BIN / 273.GIFV.SLD < prev    next >
Text File  |  1993-02-17  |  571b  |  22 lines

  1. ;
  2. ; GIFV.SLD
  3. ; This script will take ALL GIF files in the current DIR that are INTERLACED
  4. ; and re-write them so that they are NON-Interlaced GIF Files. It
  5. ; will also (for the heck of it!) write out a BMP file of the same
  6. ; picture for use within Windows. It also shows how to use the SKIPNext
  7. ; command. SkipPrev uses the same concept!
  8. ;
  9.         slide-type-normal
  10.         change-path *.gif
  11. :loop
  12.         ifint :doint
  13.         skipnext :exit
  14.         goto :loop
  15. :doint
  16.         LOADNEXT :EXIT
  17.         WRITE B
  18.         WRITE G
  19.         goto :loop
  20. :exit
  21.  
  22.