home *** CD-ROM | disk | FTP | other *** search
/ TopWare 18: Liquid / Image.iso / liquid / top1136 / gifv.slu < prev    next >
Text File  |  1993-10-05  |  443b  |  20 lines

  1. ;
  2. ; GIFV.SLU
  3. ; Take every image file in the current directory and
  4. ; print a report to the screen.
  5. ;
  6. ; NOTE: If you remove the ";" from in front of the PRINTER-ON
  7. ;       command then the report will be sent to the printer!
  8. ;
  9.  
  10.         system cls
  11. ;        Printer-ON
  12.         change-path *.?
  13. :loop
  14.         echo %file_name%, %res_x%x%res_y%x%image_colors% colors.
  15.         skipnext :exit
  16.         goto :loop
  17. :exit
  18.         ENTER
  19.  
  20.