Re: [flexcoders] repairing pixelation on resized photos

2008-09-09 Thread gabriel montagné
Hey David, Guy, On Mon, Sep 8, 2008 at 7:59 PM, David Pariente [EMAIL PROTECTED] wrote: - Mensaje original De: Guy Morton [EMAIL PROTECTED] You need to turn on bitmap smoothing. Look at the BitMap class in the help docs. eg Keep in mind that to be able to smoothen your images you

Re: [flexcoders] repairing pixelation on resized photos

2008-09-09 Thread gabriel montagné
On Tue, Sep 9, 2008 at 1:44 AM, gabriel montagné [EMAIL PROTECTED] wrote: were not allowed to do so, you'll get an ugly security violation runtime error. [...] I cleaned up the component a bit, should now work as you'd expect, trying to smooth whatever is smoothable and falling back silently

[flexcoders] repairing pixelation on resized photos

2008-09-08 Thread David Pariente
Hello, On my website i have lots of pics that i load and then resize to fit different SMALLER sizes. The smaller pictures quality is really crapnot acceptable by my customer...not even by me...i never saw a program resize picture into smaller with so less quality like this in my whole

Re: [flexcoders] repairing pixelation on resized photos

2008-09-08 Thread Guy Morton
You need to turn on bitmap smoothing. Look at the BitMap class in the help docs. eg var bitmap:Bitmap = imageObject.content as Bitmap; bitmap.smoothing = true; On 09/09/2008, at 12:16 AM, David Pariente wrote: Hello, On my website i have lots of pics that i load and then resize to

Re: [flexcoders] repairing pixelation on resized photos

2008-09-08 Thread David Pariente
thnx, i will take a look and try :) - Mensaje original De: Guy Morton [EMAIL PROTECTED] Para: flexcoders@yahoogroups.com Enviado: martes, 9 de septiembre, 2008 0:18:26 Asunto: Re: [flexcoders] repairing pixelation on resized photos You need to turn on bitmap smoothing. Look