我正在尝试将用户选择的位图保存到我自己的App路径中。
不幸的是,对于非常大的图像,我得到OutOfMemoryError错误。
我使用以下代码:
private String loadImage (Uri filePath) {
File fOut = new File(getFilesDir(),"own.jpg");
inStream = getContentResolver().openInputStream(filePath);
selectedImage = BitmapFactory.decodeStream(inStream);
selectedImage.compress(CompressFormat.JPEG, 100, new FileOutputStream(fOut));
}
我有什么方法可以将Uri的任何大小的图像文件保存到文件中吗?
*我无法调整图片大小,例如通过使用calculateInSampleSize方法。
答案 0 :(得分:0)
我有什么方法可以将Uri的任何大小的图像文件保存到文件中吗?
由于它已经是图像,只需将InputStream
中的字节复制到OutputStream
:
private void copyInputStreamToFile( InputStream in, File file ) {
try {
FileOutputStream out = new FileOutputStream(file);
byte[] buf = new byte[8192];
int len;
while((len=in.read(buf))>0){
out.write(buf,0,len);
}
out.flush();
out.getFD().sync();
out.close();
in.close();
} catch (Exception e) {
e.printStackTrace();
}
}
(改编自this SO answer)