IconColorChanger
IconColorChanger copied to clipboard
Cut icons from right and bottom
Replace the line:
Bitmap resultBitmap = Bitmap.createBitmap(sourceBitmap, 0, 0, sourceBitmap.getWidth() - 1, sourceBitmap.getHeight() - 1);
with:
Bitmap resultBitmap = sourceBitmap.copy(Bitmap.Config.ARGB_8888, true);