Reputation: 2693
How to add smoothing to an image taken from a BitmapData array?
My code:
con.addChild(new Bitmap(myImage[0]))
Thanks. Uli
Upvotes: 1
Views: 748
Reputation: 15338
try:
con.addChild(new Bitmap(myImage[0], "auto", true))
Upvotes: 5