RE: [flexcoders] BitmapData- the quality of image degrades when rotating bitmapImage

2008-02-05 Thread Yochikoh Haruomi
The smoothing = true works! Thank you for your suggestion :) I'm posting the code anyway perhaps it's useful for anyone who has the same problem. package{ import flash.display.*; import flash.events.*; import flash.net.URLRequest; public class Main extends MovieClip{

RE: [flexcoders] BitmapData- the quality of image degrades when rotating bitmapImage

2008-02-02 Thread Jim Hayes
You might try setting smoothing = true on the bitmap? I can't tell you if it will help offhand, but it's worth a go! -Original Message- From: flexcoders@yahoogroups.com on behalf of Yochikoh Haruomi Sent: Sat 02/02/2008 21:43 To: flexcoders@yahoogroups.com Subject: [flexcoders]

Re: [flexcoders] BitmapData- the quality of image degrades when rotating bitmapImage

2008-02-02 Thread Andy Milam
This isn't a Flex issue as much as it is a Flash embed issue. Add this to your html container: 'quality','best' This affects the quality rendered from the local Flash player. Your rotated bitmaps will thank you for it. (this assumes you are using AC_RunActiveContent.js to embed your flash file)