Guest User

Untitled

a guest
Jan 26th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         public function getPhoto(i:uint, callback:Function):BitmapData
  2.         {
  3.             var BMD:BitmapData = new BitmapData(photos[i].width, photos[i].height);
  4.             var imgReq:URLRequest = new URLRequest(photos[i].source);
  5.             var imgLoader:URLLoader = new URLLoader();
  6.             imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, function(e:Event):void
  7.             {
  8.                     callback((imgLoader.content as Bitmap).bitmapData);
  9.             });
  10.             imgLoader.load(imgReq);
  11.         }
Add Comment
Please, Sign In to add comment