home *** CD-ROM | disk | FTP | other *** search
/ Power Utilities / Power Utilities.iso / utility / pro211 / gifv.slh < prev    next >
Encoding:
Text File  |  1993-10-06  |  481 b   |  18 lines

  1. ;
  2. ; GIFV.SLH
  3. ; This routine will take all GIF files in the current directory and
  4. ; create BMP files. It will then delete all of the GIF files. This
  5. ; in effect converts your GIF files to BMP files leaving behind no
  6. ; GIF files!
  7. ;
  8.         change-path *.gif
  9. :loop
  10.         loadnext    :exit
  11.         Adjust-For-WIndows    ;Removes the top 16 colors from the
  12.                               ;Color Map in the file.
  13.         write       B
  14.         goto        :loop
  15. :exit
  16.  
  17.  
  18.