FLASH怎样实现从外部加载图片连接,缩小本身内存?
发布网友
发布时间:2022-04-22 20:47
我来回答
共1个回答
热心网友
时间:2023-07-17 20:44
var loadP:Loader=new Loader();
loadP.load(new URLRequest("图片路径"));
loadP.contentLoaderInfo.addEventListener(Event.COMPLETE,imageLoadFun);
function imageLoadFun(e:Event)
{
var picture:BitmapData=new BitmapData(width,height)//width跟height就是你要显示着图像的大小,自己设置
picture.draw(loadP);
var myP:Bitmap=new Bitmap(picture);//绘制对象
addChild(myP);
}
或者那个imageLoadFun函数里面修改为:
var picture:Bitmap=e.target.content as Bitmap;
picture.x=stage.stageWidth/2;
picture.y=stage.stageHeight/2;
picture.width=stage.stageWidth;
picture.height=stage.stageHeight;//分别设置图片的大小和位置,