android 把bitmap格式转成jpg 或png格式

public static void savePNG_After(Bitmap bitmap, String name) {
File file = new File(name);
try {
FileOutputStream out = new FileOutputStream(file);
if (bitmap.compress(Bitmap.CompressFormat.PNG, 100, out)) {
out.flush();
out.close();
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
//转jpg就把Bitmap.CompressFormat.PNG改成Bitmap.Compressformat.JPEG
posted @ 2017-11-16 21:38  Mr.zzz  阅读(259)  评论(0编辑  收藏  举报