调整外部图像抗锯齿的AS2位图(Actionscript 2)

时间:2015-06-02 14:26:16

标签: actionscript actionscript-2

我使用dreded AS2(不是选择)并使用外部加载的图像。

我知道

targetClip.forceSmoothing = true;

......存在,但它似乎仍然没有做太多。

外部加载的图像尺寸非常大,当在闪光灯中变小时,它们会像素化。

也许forceSmoothing是最好的方法,但...... 我认为可能有办法重新调整外部位图的大小并使用它,而不是将位图的大小调整为矢量。

有什么想法吗?

另外,我有一个AS3版本,所以如果你知道我也能做到这一点,那就太棒了。但似乎他们还不想使用它。

2 个答案:

答案 0 :(得分:0)

as2中的

: 将此类添加到项目BitmapLoader

并使用那样:

var loader : BitmapLoader = new BitmapLoader(true);
loader.addListener(this);
loader.loadBitmap("http://foo.tr/example.jpg", this, "doneLoading" );

in as3:

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

function doneLoad(e:Event){
   var bitmap:Bitmap = e.target.content as Bitmap
   bitmap.smoothing = true
}

答案 1 :(得分:0)

您是如何加载图像数据的?如果你使用BitmapData类,你可以使用矩阵和scale()命令来缩小它。

http://docs.brajeshwar.com/as2/flash/geom/Matrix.html http://docs.brajeshwar.com/as2/flash/display/BitmapData.html