Bitmapsmoothing – glätten via AS3
Januar 27th, 2009 • flash, snippet
When you work with embed smoothing (glätten) images works with this snippet:
[Embed(source="pathto/image.png")] private var _imgName : Class; ... var tmpSpr : Sprite = new Sprite(); var tmpBmp : Bitmap = new _imgName as Bitmap; tmpBmp.smoothing = true; tmpSpr.addChild(tmpBmp);