fix android 2.3 can't decode bitmap in rgba8888 format
public static Bitmap convert(Bitmap bitmap, Bitmap.Config config) { | |
Bitmap convertedBitmap = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), config); | |
Canvas canvas = new Canvas(convertedBitmap); | |
Paint paint = new Paint(); | |
paint.setColor(Color.BLACK); | |
canvas.drawBitmap(bitmap, 0, 0, paint); | |
return convertedBitmap; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment