Doodle icon indicating copy to clipboard operation
Doodle copied to clipboard

如果设置底图为透明,是否橡皮擦效果是无法使用

Open panliang-rm opened this issue 4 months ago • 0 comments

Bitmap transparentBitmap = Bitmap.createBitmap(500, 500, Bitmap.Config.ARGB_8888);
  if (mBitmap.getConfig() != Bitmap.Config.RGB_565) {
            // 如果位图包含透明度,则可能会导致橡皮擦无法对透明部分进行擦除
            LogUtil.w(TAG, "the bitmap may contain alpha, which will cause eraser don't work well.");
        }

panliang-rm avatar Oct 16 '24 03:10 panliang-rm