home *** CD-ROM | disk | FTP | other *** search
- /*
- * $VER: UnJPEG 1.00.00 (24.9.92)
- *
- * Arexx program for the ImageFX image processing system.
- * Written by Thomas Krehbiel
- *
- * Convert a series of JPEG images to IFF24 files.
- *
- */
-
- OPTIONS RESULTS
-
- RequestFile '"Input Basename..."'
- IF rc ~= 0 THEN EXIT
- input = result
-
- RequestFile '"Output Basename..."'
- IF rc ~= 0 THEN EXIT
- output = result
-
- DO i = 1 TO 25
-
- num = RIGHT(i,3,'0')
-
- LoadBuffer input||num NoSmooth
- IF rc ~= 0 THEN LEAVE
-
- SaveBufferAs ILBM output||num
-
- END
-
-
- EXIT
-