home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / varia / povray3 / povray3_fpu / scripts / picconv.rexx < prev    next >
OS/2 REXX Batch file  |  1997-12-12  |  298b  |  10 lines

  1. /*  Parse POV-Ray output filename into seperate path+name, extension */
  2.  
  3. parse ARG infile
  4. parse var infile basename '.' ext
  5.  
  6. address command 'povray3:utils/'ext'toppm 'infile' >t:tempic'
  7. address command 'povray3:utils/ppmtoilbm -24force t:tempic >'basename'.iff'
  8. address command 'delete t:tempic'
  9.  
  10.