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

保存图片的时候尺寸变小了

NightExp opened this issue · comments

保存的图片尺寸变小了。因为绘图的时候进行了压缩。
Bitmap bitmap = ImageUtils.createBitmapFromPath(mImagePath, this);

直接Bitmap bitmap = BitmapFactory.decodeFile(mImagePath);可以恢复原来的尺寸,但是大图又OOM。

有没有办法绘制的时候压缩来避免OOM,保存的时候恢复到原图的尺寸呢。