从文件中获取位图图像

时间:2017-06-29 17:32:27

标签: java android file bitmap android-file

我需要在tmp文件中保存摄像头中捕获的图像并在下一个活动中检索它,这样我就能更好地处理OOM错误。

所以我做了这样的事情来写这个文件:

public void savePicAtFile(Bitmap pic){
        FileOutputStream out = null;
        try {
            out = new FileOutputStream("tmpCameraPic");
            pic.compress(Bitmap.CompressFormat.JPEG, 100, out); // bmp is your Bitmap instance
            // PNG is a lossless format, the compression factor (100) is ignored
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if (out != null) {
                    out.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

现在我不知道如何检索压缩图像,我应该创建一个位图并获取流吗?

任何帮助?

0 个答案:

没有答案