ActionScript 3 平滑位图

Posted

tags:

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

_imageLoader = new Loader();
_imageLoader.load(new URLRequest(_imageUrl));
			_imageLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, imageLoading);
_imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);

private function imageLoaded(e:Event) {
    var tempBitmap:Bitmap = e.target.content as Bitmap;
    tempBitmap.smoothing = true;
    _imageHolder.addChild(_imageLoader);
    dispatchEvent(new Event(IMAGE_LOADED))
}

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

ActionScript 3 平滑位图

ActionScript 3 公共位图

ActionScript 3 双线性位图缩放

ActionScript 3 DisplayObjects的位图快照

ActionScript 3 动态获取位图数据

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