1993hzw / Doodle

Image doodle for Android, with functions such as undo, zoom, move, text, image, etc. Also a powerful, customizable and extensible doodle framework & multi-function drawing board. Android图片涂鸦,具有撤消,缩放,移动,添加文字,贴图等功能。还是一个功能强大,可自定义和可扩展的涂鸦框架、多功能画板。

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

当图片为透明的时候橡皮檫没有效果

keke233 opened this issue · comments

Bitmap bitmap = Bitmap.createBitmap(1024, 768, Bitmap.Config.ARGB_8888);
imageDoodle = doodleView = new DoodleView(this, bitmap, true,

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