Rotation in flash causing image borders to look "pixely", how to fix? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T02:32:29Zhttp://stackoverflow.com/feeds/question/1058187http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1058187/rotation-in-flash-causing-image-borders-to-look-pixely-how-to-fix0Rotation in flash causing image borders to look "pixely", how to fix?Tom2009-06-29T13:10:17Z2009-07-02T22:40:07Z
<p>I have a bitmap loaded in flash, for a 2D game. The bitmap represents a character and is rotating when the user uses the A (left) or D (right) keys. The problem I have is that the border of the image becomes ugly while rotating, you can see "pixels" (you can always see pixels, but I hope you understand what I mean).</p>
<p>How can I fix this in actionscript 3, maybe change the rotation algorithm or "fix" the image after rotation? Or should I save/render the image differently in eg. Photoshop before using it with Flash?</p>
<p>Update: note that the background of the game is constantly changing.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1058187/rotation-in-flash-causing-image-borders-to-look-pixely-how-to-fix/1058223#10582231Answer by graham.reeds for Rotation in flash causing image borders to look "pixely", how to fix?graham.reeds2009-06-29T13:16:02Z2009-06-29T13:16:02Z<p>You could try a simple antialias along the edges by summing the pixel that is there and the pixel you will be overlaying. You could take a look at <a href="http://en.wikipedia.org/wiki/Xiaolin%5FWu%27s%5Fline%5Falgorithm" rel="nofollow">Wu antialiasing</a> for <a href="http://www.codeproject.com/KB/GDI/antialias.aspx" rel="nofollow">an example</a> you could use as a start point.</p>
http://stackoverflow.com/questions/1058187/rotation-in-flash-causing-image-borders-to-look-pixely-how-to-fix/1058312#10583123Answer by Cay for Rotation in flash causing image borders to look "pixely", how to fix?Cay2009-06-29T13:29:26Z2009-06-29T13:29:26Z<p>If the image is an external load (Loader class), then you can write:</p>
<pre><code>Bitmap(myLoader.content).smoothing=true;
</code></pre>
<p>If it's internal (its in the library) you need to right click the library bitmap > properties and enable "Smoothing". Plus, if you are instantiating it as a BitmapData, then you need to do this:</p>
<pre><code>var bmp:BitmapData=new LibraryBitmap(0,0);
var bitmap:Bitmap=new Bitmap(bmp,"auto",true); //the third argument is smoothing
</code></pre>
<p>Cheers...</p>
http://stackoverflow.com/questions/1058187/rotation-in-flash-causing-image-borders-to-look-pixely-how-to-fix/1058313#10583133Answer by back2dos for Rotation in flash causing image borders to look "pixely", how to fix?back2dos2009-06-29T13:29:28Z2009-06-29T13:29:28Z<p>use the <a href="http://livedocs.adobe.com/flex/3/langref/flash/display/Bitmap.html#smoothing" rel="nofollow">flash.display.Bitmap::smoothing</a> property ... the langref specifies, it smooth's when scaling, but it works for rotation as well ...</p>
http://stackoverflow.com/questions/1058187/rotation-in-flash-causing-image-borders-to-look-pixely-how-to-fix/1077010#10770101Answer by PiPeep for Rotation in flash causing image borders to look "pixely", how to fix?PiPeep2009-07-02T22:40:07Z2009-07-02T22:40:07Z<p>A quick note: Bitmap rotation is slow, so while loading the game, it might be a good idea to take characters that are often rotating, or are common, rotate them to every 1 degree that is possible in the game, use BitmapData.draw, and push it onto an Array (or a Vector in FP10, if possible), and then use those Bitmaps.</p>
<p>YAY, run-on sentences!</p>
<p>Happy Coding! :-)</p>