我正在将字节写入jpg图像,但在写入字节后,每当我尝试从ES文件资源管理器中打开该图像时,图像都会被破坏。
以下是我正在尝试的代码:
private void overWriteImage() {
if (file.exists()) {
file.delete();
}
try {
FileOutputStream fos = new FileOutputStream(file.getPath());
fos.write(this.imageBytes);
fos.close();
} catch (java.io.IOException e) {
Log.e("PictureDemo", "Exception in photoCallback", e);
}
}