Re: [Flashcoders] Antialiasing BitmapData in AS2?

2007-02-05 Thread Henry Cooke
Thanks for the heads-up, Alias (and good to hear from you again ;) ) The original attachment's up at http://www.prehensile.co.uk/dropbox/Untitled-1.gif. I'm using the old blur-lots-then-threshold technique. I've done a bit more research, and the way I understand it, most antialiasing techniques

Re: [Flashcoders] Antialiasing BitmapData in AS2?

2007-02-05 Thread Zeh Fernando
I guess an algorithm could be conceived that would somehow infer sub-pixel values, but this feels like it would be unnecessary faff, and very slow. Anyone know of a quick-and-dirty way of smoothing a bitmap? I guess I could render at a higher resolution than needed and scale down, to mimic

Re: [Flashcoders] Antialiasing BitmapData in AS2?

2007-02-05 Thread lincoln
I am also having a similar unsightly antialiasing or ripping issue that I was hoping for a solution. I have a jpg in flash that i'm skewing and distorting while animating. The combination of these effects is causing a very noticeable ripping artifact in the image where it looks as if the

RE: [Flashcoders] Antialiasing BitmapData in AS2?

2007-02-05 Thread Thimon Sistermans
(); } bmp_fill_mc._xscale = 200; bmp_fill_mc._yscale = 200; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of lincoln Sent: Monday, February 05, 2007 16:34 To: Flashcoders mailing list Subject: Re: [Flashcoders] Antialiasing BitmapData in AS2? I am also having

Re: [Flashcoders] Antialiasing BitmapData in AS2?

2007-02-05 Thread lincoln
(0, 0); endFill(); } bmp_fill_mc._xscale = 200; bmp_fill_mc._yscale = 200; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of lincoln Sent: Monday, February 05, 2007 16:34 To: Flashcoders mailing list Subject: Re: [Flashcoders] Antialiasing BitmapData

Re: [Flashcoders] Antialiasing BitmapData in AS2?

2007-02-04 Thread Alias™
Can you throw the example image onto a web server so we can see it? The list strips out attachments :( Alias On 01/02/07, Henry Cooke [EMAIL PROTECTED] wrote: Hey all, I've been mucking about with a metablob-type thing, and have got it rendering quite nicely. However, it only renders a

[Flashcoders] Antialiasing BitmapData in AS2?

2007-02-01 Thread Henry Cooke
Hey all, I've been mucking about with a metablob-type thing, and have got it rendering quite nicely. However, it only renders a black-or-white (1bit) bitmap - does anyone know of a good technique to do fast antialiasing on such a bitmap? I've tried blurring a bit (which is slow as hell, and