·您当前的位置:首页 > 技术教程 > AS2与AS3技术 >

[AS3]as3中调整饱和度as3滤镜

时间:2014-06-18 12:58wayne23
[AS3]as3中调整饱和度as3滤镜as3滤镜,as3色彩滤镜,as3饱和度,as3对比度

在flash IDE内应用很熟吧?但是在as内怎么用代码实现呢?这个问题还别说,起初真有点犯难,后经高手指点,逐一化解。经验不敢独享,故与大家分享(高手可掠过)。

  1. import fl.motion.ColorMatrix; 
  2. import flash.filters.ColorMatrixFilter; 
  3. //**CuPlayer.com的提示:调整亮度**// 
  4. var ld_Matrix:ColorMatrix=new ColorMatrix(); 
  5. var ld_Filter:ColorMatrixFilter=new ColorMatrixFilter(); 
  6. ld_Matrix.SetBrightnessMatrix(100);  
    //设置亮度值,值的大小是 -255--255   0为中间值,向右为亮向左为暗。 
  7. ld_Filter.matrix = ld_Matrix.GetFlatArray(); 
  8. ld_MC.filters = [ld_Filter]; 
  9. //ld_MC.filters = [];//去除滤镜 
  10.  
  11. //**CuPlayer.com的提示:调整对比度**// 
  12. var db_Matrix:ColorMatrix=new ColorMatrix(); 
  13. var db_Filter:ColorMatrixFilter=new ColorMatrixFilter(); 
  14. db_Matrix.SetContrastMatrix(255);  
    //设置对比度值,值的大小是 -255--255  127.5为中间值,向右对比鲜明向左对比偏暗。 
  15. db_Filter.matrix = db_Matrix.GetFlatArray(); 
  16. db_MC.filters = [db_Filter]; 
  17. //db_MC.filters = [];//去除滤镜 
  18.  
  19. //**CuPlayer.com的提示:调整饱和度**// 
  20. var bh_Matrix:ColorMatrix=new ColorMatrix(); 
  21. var bh_Filter:ColorMatrixFilter=new ColorMatrixFilter(); 
  22. bh_Matrix.SetSaturationMatrix(0);  
    //设置饱和度值,值的大小是 -255--255   1为中间值,0为灰度值(即黑白相片)。 
  23. bh_Filter.matrix = bh_Matrix.GetFlatArray(); 
  24. bh_MC.filters = [bh_Filter]; 
  25. //bh_MC.filters = [];//去除滤镜 
  26.  
  27. //**CuPlayer.com的提示:调整色相**// 
  28. var sx_Matrix:ColorMatrix=new ColorMatrix(); 
  29. var sx_Filter:ColorMatrixFilter=new ColorMatrixFilter(); 
  30. sx_Matrix.SetHueMatrix(1);  
    //设置色相值,值的大小是 -255--255  0为中间值,向右向左一试便知。 
  31. sx_Filter.matrix = sx_Matrix.GetFlatArray(); 
  32. sx_MC.filters = [sx_Filter]; 
  33.  
  34. //sx_MC.filters = [];//去除滤镜 

热门文章推荐

请稍候...

保利威视云平台-轻松实现点播直播视频应用

酷播云数据统计分析跨平台播放器