home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / GFX / Converter / IMAFX26.lha / imagefx2 / rexx / autofx / UnsharpMask.ifx < prev   
Encoding:
Text File  |  1994-10-25  |  493 b   |  25 lines

  1. /*
  2.  * UnsharpMask.ifx
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Unsharp Mask Effect.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Frame number (1 - N)
  9.  *    Word(Arg(1),2) = Main filename ("-" if not specified)
  10.  *    Word(Arg(1),3) = Swap filename ("-" if not specified)
  11.  *    Word(Arg(1),4) = Sequence number (?)
  12.  *    Word(Arg(1),5) = Total number of frames (N)
  13.  *
  14.  * Returns:
  15.  *    0 if successful, non-zero on failure
  16.  *
  17.  */
  18.  
  19. OPTIONS RESULTS
  20.  
  21. a = GETCLIP('Autofx_Unsharp_Amount')
  22. UnsharpMask a
  23.  
  24. EXIT rc
  25.