home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
TopWare 18: Liquid
/
Image.iso
/
liquid
/
top2199
/
gifv.slt
< prev
next >
Wrap
Text File
|
1993-02-17
|
622b
|
21 lines
;
; GIFV.SLT
; Take every GIF file in G:\IMAGES and make them GRAY scaled using an EGA
; monitor and keeping all 256 colors that may be in the image. This way you can
; use a cheapo monitor to process your image files!
; It also will keep the original screen size intact so that when a viewer tries
; to display the NEW image it won't try to switch into EGA mode!
;
EGA-MODE
EGA-COLOR-ADJUST OFF
KEEP-SCREEN-SIZE
slide-type-Fade
change-path G:\IMAGES\*.GIF
:loop
loadnext :exit
gray
write G
goto :loop
:exit
ENTER