Vector Art to Bitmap - Quality Settings
I have some vector art in a sprite that I make into a bitmap like so:
var mySprite:Sprite = new myVectorSprite();
var mySpriteBMD = new BitmapData(800,600,true,0x00ffffff);
mySpriteBMD.draw(mySprite);
I just noticed that if the SWF quality settings are set to low when that occurs, the bitmap will look like crap as well. And since it is already drawn, if the user sets the quality back to high, everything else will be in high quality except for that bitmap. Is there a way to force it to draw the bitmap in high quality and then set the quality back to whatever the user had it set to?