swftools-common
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Swftools-common] image "wraps" when scaling


From: Matthias Kramm
Subject: Re: [Swftools-common] image "wraps" when scaling
Date: Tue, 2 Mar 2004 17:56:01 +0100
User-agent: Mutt/1.4i

On Mon, Mar 01, 2004 at 02:42:48PM +0100, Markus Schorer wrote:
> i'm creating a swf-file with a single, lossless image (256x256).
> when i scale the player (up) the left- and top-most pixelrows get
> "mirrored" to the right and bottom.
> 
> any idea?

This is due to anti-alising. If you switch your Flash Player quality
to "low", the wrapping disappears. You can do that by right-clicking
on the picture, or in the SWF itself, via ActionScript:

    ActionTAG*a = 0;
    a = action_ToggleQuality(a);
    a = action_End(a);
    tag = swf_InsertTag(tag,ST_DOACTION);
    swf_ActionSet(tag,a);

Also, switching clipping on by changing

    fs = swf_ShapeAddBitmapFillStyle(s, &m, id, 0);

to

    fs = swf_ShapeAddBitmapFillStyle(s, &m, id, 1);

could help.

Greetings

Matthias






reply via email to

[Prev in Thread] Current Thread [Next in Thread]