Hello! Our application needs the ability to take a logo (which gets uploaded in a different interface via rails) and resize it dynamically depending on which item they are purchasing.
As of right now, I am using a Loader and when Event.COMPLETE is dispatched, I catch it, create a new width/height, call myMatrix.scale(newW,HewH), than bitmapFill on a UIComponent using the bitmapData and my matrix. Everything works, in that it does resize the image, but they quality is not very good, some of them are decent looking, and others do not handle aliasing well at all. Smoothing is set to true when I do the bitmapFill. Is there a better way to do this? Should I be creating a new image with the data rather than resizing the data dynamically? Halp! :( Thanks!