플밍

부드럽게 표현되는 mxml Image 컴포넌트 본문

프로그래밍/Flash & Flex

부드럽게 표현되는 mxml Image 컴포넌트

너구리안주 2009. 8. 27. 17:49
<mx:Image /> 컴포넌트를 사용하면 계단현상이나 찌그러지게 나온다.
이를 보완하기 위해 smoothing 을 추가한 컴포넌트이다.

#ads_1



<?xml version="1.0" encoding="utf-8"?>
<mx:Image xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
<![CDATA[
override protected function updateDisplayList(uw:Number, uh:Number):void{
super.updateDisplayList(uw, uh);
if(content is Bitmap){
var bmp:Bitmap = Bitmap(content);
if(bmp && bmp.smoothing == false){
bmp.smoothing = true;
}
}
}
]]>
</mx:Script>
</mx:Image>

#ads_1


Comments