FlashEff's image quality being low when applied on a scale downed image.

Posted by user1363391 
FlashEff's image quality being low when applied on a scale downed image.
February 21, 2013 06:24AM
Dear admin,

We found that when we apply a flashEff on a scale up and also scale downed graphic, the captured image with effect got down graded it's quality a lot.

Is there any way we can fix it? We have to use this 'strange' scaling in our site and it is no problem with the common flash transition.

You may find the code here:

<mx:Script>
		<![CDATA[
			import com.jumpeye.flashEff2.symbol.brightSquares.FESBrightSquares;
			
			private function startEffect():void{
				var flashEff:FlashEff2Flex = new FlashEff2Flex();
				var fx:FESBrightSquares = new FESBrightSquares();
				FESBrightSquares(fx).preset=11;
				FESBrightSquares(fx).squareWidth=25;
				FESBrightSquares(fx).squareHeight=25;
				FESBrightSquares(fx).scaleXAmount=1;
				FESBrightSquares(fx).scaleYAmount=1;
				FESBrightSquares(fx).brightness=255;
				FESBrightSquares(fx).hAlign='left';
				FESBrightSquares(fx).vAlign='middle';
				FESBrightSquares(fx).smooth=false;
				FESBrightSquares(fx).groupDuration=1.1;
				
				FESBrightSquares(fx).tweenType='Quadratic';
				FESBrightSquares(fx).easeType='easeInOut';
				FESBrightSquares(fx).tweenDuration = 5;
				
				c3.addChild(flashEff);
				
				shot.scaleX = shot.scaleY = 1/3;
				flashEff.target = shot;
				
				flashEff.showTransition = fx;
				flashEff.show();
			}
		]]>
	</mx:Script>
	<mx:Image id="shot" source="@Embed('screen.jpg')"/>
	<mx:Canvas id="c3" width="{1366/3}" height="{768/3}" scaleX="3" scaleY="3"/>

You may able to find the html+swf also the .fxp flex project here:
[www.filedropper.com]


Thanks
Sorry, you do not have permission to post/reply in this forum.