home *** CD-ROM | disk | FTP | other *** search
- /*
- * $VER: ScanMultiple 2.0.0 (8.6.93)
- *
- * Arexx program for the ImageFX image processing system.
- * Written by Thomas Krehbiel
- *
- * Updated for ImageFX 2.0.
- *
- * Scan multiple monochrome pages from an Epson ES800C with a
- * document feeder attachment. Files as saved as individual
- * 2-color ILBM's in RAM:.
- *
- */
-
- OPTIONS RESULTS
-
-
- SetRender Foreign
- IF rc ~= 0 THEN EXIT
-
- Render Mode Hires Lace
- Render Colors 2
-
- pagenum = 1
-
- DO FOREVER
-
- Message 'Scanning Page' pagenum
-
- /* requires 2.0 */
- Scanner DetailScan Mono Dpi 100 ADF
- IF rc ~= 0 THEN LEAVE
-
- Render Go
- SaveRenderedAs ILBM 'ram:page'||RIGHT('000'||pagenum,4)
-
- pagenum = pagenum + 1
-
- END
-
- EXIT
-