IconColorChanger icon indicating copy to clipboard operation
IconColorChanger copied to clipboard

Cut icons from right and bottom

Open tamirherman opened this issue 9 years ago • 0 comments

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);

tamirherman avatar Feb 11 '16 13:02 tamirherman