What does the filter parameter to createScaledBitmap do?

Posted by clahey on Stack Overflow See other posts from Stack Overflow or by clahey
Published on 2010-05-24T06:05:38Z Indexed on 2010/05/24 6:11 UTC
Read the original article Hit count: 945

Filed under:
|
|

The declaration of android.graphics.Bitmap.createScaledBitmap is

public static Bitmap createScaledBitmap
  (Bitmap src, int dstWidth, int dstHeight, boolean filter)

However, the documentation doesn't explain any of the parameters. All of them are pretty obvious except for boolean filter. Does anyone know what it does?

© Stack Overflow or respective owner

Related posts about android

Related posts about android-sdk