Flash实现模拟吸管Eyedropper功能动画

2008-04-02 11:07:44来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折


  c续之前的柔化后觉得BitmapData函数做到了很多之前做不到的效果了,尤其是在制作画板时需要的吸管工具,在这里只要一行函数就能够取得我们要的?色了。。真方便啊

  


  
MovieClip.prototype.smoothImageLoad=function(img){//柔化?片

  varm=this.createEmptyMovieClip("mc",this.getNextHighestDepth());

  varlistener=newMovieClipLoader();

  listener.onLoadComplete=function(mc:MovieClip){

  mc.onEnterFrame=function(){

  varbitmap=newflash.display.BitmapData(this._width,this._height);

  bitmap.draw(this);

  this.attachBitmap(bitmap,1,true,true);

  this.smoothImageLoadComplete();

  updateAfterEvent();

  }

  };

  listener.loadClip(img,m);

  };

  MovieClip.prototype.pickColor=function(){//取得?片?色

  varbitmap=newflash.display.BitmapData(this._width,this._height);

  bitmap.draw(this);

  if(bitmap!=undefined){

  varmyColor=bitmap.getPixel(this._xmouse,this._ymouse);

  return"0x" myColor.toString(16).toUpperCase();

  }

  }

  this.createEmptyMovieClip("mc",0);

  mc.smoothImageLoad("doggy.jpg");

  mc._xscale=mc._yscale=300;

  this.onMouseMove=function(){

  myColor=mc.pickColor();//取得?片的?色函?

  varcolorTansform=newflash.geom.ColorTransform();

  colorTansform.rgb=myColor;

  colorMc.transform.colorTransform=colorTansform;

  colorTxt.text=myColor;

  updateAfterEvent();

  }


标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇: AS代码2.0:脚本编辑和调试

下一篇: 边听MTV边玩游戏Flash也能画中画