I get a bitmap from resource using this method and draw it using Canvas.drawBitmap within a class extended from SurfaceView:
private Bitmap getImage(Context context, int imageId) {
TypedValue value = new TypedValue();
context.getResources().openRawResource(imageId, value);
BitmapFactory.Options opts = new BitmapFactory.Options();
opts.inTargetDensity = value.density;
return BitmapFactory.decodeResource(context.getResources(), imageId,
opts);
}
This bitmap displays itself without any problem. But when I want to change it's color using the following method and draw this new bitmap, the it will always lose some part of the whole image.
public static Bitmap changeColor(Bitmap bmpOriginal, float degree) {
Bitmap bmp = Bitmap.createBitmap(bmpOriginal.getWidth(),
bmpOriginal.getWidth(), Config.ARGB_8888);
// Set the two bitmaps with the same density.
//But it seems no use now
// try {
// bmp.setDensity(bmpOriginal.getDensity());
// } catch (Exception e) {
// // TODO: handle exception
// Log.v("ImageTools_changeColor", "" + e.toString());
// }
Canvas c = new Canvas(bmp);
Paint paint = new Paint();
ColorMatrix cm = new ColorMatrix();
cm.setRotate(0, degree);
ColorMatrixColorFilter f = new ColorMatrixColorFilter(cm);
paint.setColorFilter(f);
c.drawBitmap(bmpOriginal, 0, 0, paint);
return bmp;
}
I tried many search results from the web, but still don't know why. I think the problem may also come from another source: the resource bitmap itself. It is a 32bit png file 65*161 big and with a size of 1.59KB, not very big. So I get another png and draw with the same method, nothing goes wrong! So these two pngs' links are also given here for you to find the crux of the problem. Thanks a loooot!
================The png causing problem VS The png without problem=============