ActionScript 3 位图平滑

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 位图平滑相关的知识,希望对你有一定的参考价值。

var loader:Loader = new Loader() ;
loader.load(new URLRequest("chemin_vers_image.jpg")) ;
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, smooth) ;

function smooth(e:Event):void
{
	var bmp:Bitmap = loader.content as Bitmap ;
	bmp.smoothing = true ;
}

以上是关于ActionScript 3 位图平滑的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 平滑位图

ActionScript 3 公共位图

ActionScript 3 双线性位图缩放

ActionScript 3 DisplayObjects的位图快照

ActionScript 3 动态获取位图数据

ActionScript 3 从外部加载的图像中获取位图数据。