Reputation: 3035
When rotating a bitmap with actionscript, the edges are jagged and not properly anti-aliased.
How do you force anti-aliasing of the bitmap ?
this.stage.quality = StageQuality.BEST; // Tried this, but seems useless
var imgFromLib = new imgFromLib ();
imgFromLib.rotation = 30;
Upvotes: 1
Views: 1957
Reputation: 9897
imgFromLib should be castable to Bitmap; Bitmap has smoothing and pixelSnapping properties. Maybe this helps.
Upvotes: 2