我使用下面引用的方法来舍入任何位图的角。有时候它完美运行,有些时候不是因为OutOfMemory异常。例外情况经常发生在
行Bitmap output = Bitmap.createBitmap(bitmap.getWidth(),
bitmap.getHeight(), Config.ARGB_8888);
我在这里错过任何特殊代码吗?请帮帮我。
public static Bitmap roundBitmap(Bitmap bitmap, int roundedRadius) {
if (bitmap == null)
return null;
if (roundedRadius == 0) {
return bitmap;
}
// Bitmap output = bitmap.copy(Config.ARGB_8888, true);
Bitmap output = Bitmap.createBitmap(bitmap.getWidth(),
bitmap.getHeight(), Config.ARGB_8888);
Canvas canvas = new Canvas(output);
final int color = 0xffffff00;
final Paint paint = new Paint();
final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
final RectF rectF = new RectF(rect);
final float roundPx = roundedRadius;
paint.setAntiAlias(true);
canvas.drawARGB(0, 0, 0, 0);
paint.setColor(color);
canvas.drawRoundRect(rectF, roundPx, roundPx, paint);
paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
canvas.drawBitmap(bitmap, rect, rect, paint);
return output;
}
答案 0 :(得分:1)
如果在调用roundBitmap()
后不需要原始位图,则应调用bitmap.recycle()
以释放位图使用的内存。
答案 1 :(得分:-4)
Bitmap output = Bitmap.createBitmap(bitmap.getWidth(),
bitmap.getHeight(), new BitmapFactory.Options().inSampleSize=4);
尝试上面的代码来创建位图。