home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Esportes / CrossingCup.swf / scripts / __Packages / sandy / util / BitmapUtil.as next >
Text File  |  2007-12-11  |  930b  |  33 lines

  1. class sandy.util.BitmapUtil
  2. {
  3.    function BitmapUtil()
  4.    {
  5.    }
  6.    static function movieToBitmap(mc, pTransparent, pColor)
  7.    {
  8.       var _loc3_ = undefined;
  9.       pTransparent = pTransparent != undefined ? pTransparent : true;
  10.       if(pTransparent == true && pColor == undefined)
  11.       {
  12.          pColor = 16711884;
  13.       }
  14.       if(pColor)
  15.       {
  16.          _loc3_ = new flash.display.BitmapData(mc._width,mc._height,pTransparent,pColor);
  17.       }
  18.       else
  19.       {
  20.          _loc3_ = new flash.display.BitmapData(mc._width,mc._height,pTransparent);
  21.       }
  22.       _loc3_.draw(mc);
  23.       return _loc3_;
  24.    }
  25.    static function getScaledBitmap(b, scalex, scaley)
  26.    {
  27.       scaley = undefined != scaley ? scaley : scalex;
  28.       var _loc2_ = new flash.display.BitmapData(scalex * b.width,scaley * b.height);
  29.       _loc2_.draw(b,new flash.geom.Matrix(scalex,0,scaley,0));
  30.       return _loc2_;
  31.    }
  32. }
  33.