views:

30

answers:

1

I have an Image control in my Flex application:

<mx:Image id="img" source="@Embed('img.png')"
          percentHeight="100" percentWidth="100"  />

Because the image is scaled, there are a lot of scaling artifacts. Can I change the image to use a different type of filtering?

+1  A: 

You could try and set smoothBitmapContent="true" on the image control, that should improve image quality.

ilikeorangutans
You are a genius!
George Edison
Thank you. Glad I could help.
ilikeorangutans