home *** CD-ROM | disk | FTP | other *** search
/ MacPeople 2000 April 15 / MACPEOPLE-2000-04-15.ISO.7z / MACPEOPLE-2000-04-15.ISO / オンラインウエア / 厳選オンラインウエア100 / グラフィック / Photonick_PPC.sit / Filter / thresh_l.fcf < prev   
Text File  |  1998-10-19  |  788b  |  63 lines

  1. AFCF
  2. #    Photonick Filter Code File
  3. #   Light Threshold
  4. #
  5. #    Authors:
  6. #            Original Code    : Yasushi Tanaka
  7. #
  8. #   Copyright (C) 1997-98 by Yasushi Tanaka
  9.  
  10. # Version Number ; V + Value
  11. V:0002
  12.  
  13. # Filter ID ; I + Value
  14. I:12
  15.  
  16. # Filter Title   ; T + String
  17. T:明しきい値
  18.  
  19. # Use Preview        ; P:n
  20. P:1
  21.  
  22. # Slider Value        ; S:n cr mi mx cr mi mx cr mi mx
  23. S:1
  24.   255  0  255
  25.  
  26. # Slider Label        ; L:str
  27. L:しきい値
  28.  
  29. # Color Space : RGB or YUV
  30. C:RGB
  31.  
  32. # R or V
  33. R:
  34.     const_s0 y            ; X = S0
  35.  
  36.     mov 255 a            ; A = Value of Red
  37.     const_r x
  38.     bmr 2 y x
  39.     mov x a                ; A = Value of Red
  40.     eop
  41. /:
  42.  
  43. # G or Y
  44. G:
  45.     mov 255 a            ; A = Value of Green
  46.     const_g x
  47.     bmr 2 y x
  48.     mov x a                ; A = Value of Green
  49.     eop
  50. /:
  51.  
  52. # B or U
  53. B:
  54.     mov 255 a            ; A = Value of Blue
  55.     const_b x
  56.     bmr 2 y x
  57.     mov x a                ; A = Value of Blue
  58.     eop
  59. /:
  60.  
  61. # End of fsf
  62. E:
  63.