bitmap转为file
时间: 2023-03-31 10:00:46 浏览: 162
Bitmap保存为文件
4星 · 用户满意度95%
您好,关于将bitmap转为file的问题,可以使用以下代码实现:
```
Bitmap bitmap = BitmapFactory.decodeFile(bitmapPath);
File file = new File(filePath);
try {
FileOutputStream fos = new FileOutputStream(file);
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
fos.flush();
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
```
希望能对您有所帮助。
阅读全文