Saving canvas to bitmap on Android

前端 未结 5 1494
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-05 13:24

I\'m having some difficulty with regards to placing the contents of a Canvas into a Bitmap. When I attempt to do this, the file gets written with a file size of around 5.80K

5条回答
  •  隐瞒了意图╮
    2021-01-05 14:16

    May be

    canvas.setBitmap(toDisk);
    

    is not in correct place.

    Try this :

    toDisk = Bitmap.createBitmap(640,480,Bitmap.Config.ARGB_8888);              
    toDisk.compress(Bitmap.CompressFormat.JPEG, 100, new FileOutputStream(new File("arun.jpg")));
    
    canvas.setBitmap(toDisk);
    

提交回复
热议问题