Android中位图缩放可以用Bitmap的静态函数createScaledBitmap实现
示例:Bitmap bmp=Bitmap.createScaledBitmap(oldBmp,100,100,false);
public static Bitmap createScaledBitmap (Bitmap src, int dstWidth, int dstHeight, boolean filter)
作用:缩放位图
参数:
Bitmap src:要缩放的位图
int dstWidth:目标宽度
int dstHeight:目标高度
boolean filter:??
public static Bitmap createScaledBitmap (Bitmap src, int dstWidth, int dstHeight, boolean filter)
作用:缩放位图
参数:
Bitmap src:要缩放的位图
int dstWidth:目标宽度
int dstHeight:目标高度
boolean filter:??
filter的作用是什么呢?