开发者

Saving as a png image in android

开发者 https://www.devze.com 2023-02-02 13:38 出处:网络
I am developing paint app and i save my drawing as png image. For drawing i used canvas that created with a bitmap. it works but image was corrupted. Can any one help me. I didn\'t check it with a rea

I am developing paint app and i save my drawing as png image. For drawing i used canvas that created with a bitmap. it works but image was corrupted. Can any one help me. I didn't check it with a real phone but on the emulator. Is that problem with emulator. I think it has very small processin开发者_StackOverflow社区g ability. Am i right? Thank you.


The emulator works fine. What piece of code did you use to store the bitmap as png?

The following works fine in the emulator:

Bitmap bitmap = createYourBitmap();
OutputStream stream = new FileOutputStream("/sdcard/test.png");
/* Write bitmap to file using JPEG or PNG and 80% quality hint for JPEG. */
bitmap.compress(CompressFormat.PNG, 80, stream);
stream.close();
0

精彩评论

暂无评论...
验证码 换一张
取 消