home *** CD-ROM | disk | FTP | other *** search
/ Spanish Scene 4 / SpanishScene4.iso / Programas / EsteveBoix_Ind / tablePlugv12.lha / tablePlug12 / rx / gfxcon.tpx < prev    next >
Text File  |  1999-10-11  |  594b  |  29 lines

  1. /*
  2.  
  3.     gfxcon.tpx v1.0 © 1999 Esteve Boix
  4.  
  5.     Uses GFXCon to scale the images and save them in JPG
  6.     format.
  7.  
  8.     Args: SIZEX SIZEY JPEG_COMPRESSION
  9.  
  10.     Where:
  11.  
  12.         SIZEX, SIZEY        Size in pixels of the thumbnail
  13.         JPEG_COMPRESSION    Well...
  14.  
  15.     You may have to edit this file in order to adapt the filename of GFXCon
  16.     executable.
  17.  
  18. */
  19.  
  20. options results
  21.  
  22. parse arg maxsizex maxsizey compression infile outfile
  23.  
  24. address command
  25. 'stack 25000'
  26. 'c:gfxcon_68020 '||infile||' TO '||outfile||' BOXFIT '||maxsizex||' '||maxsizey||' FORMAT JPEG NOPROGRESS QUALITY '||compression
  27.  
  28.  
  29.