Uli
Uli

Reputation: 2693

AS3 - Image smoothing

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

Answers (1)

mgraph
mgraph

Reputation: 15338

try:

con.addChild(new Bitmap(myImage[0], "auto", true))

Upvotes: 5

Related Questions