bitmap.compress破坏画质

bitmap.compress destroys the picture quality

我正在使用一个应用程序来获取 gps 位置并将其绘制为位图上的圆圈然后保存以继续,因此我需要重复读取和保存文件。但不幸的是,当我保存文件并读取它时,文件在一些迭代后被损坏了......!
代码:

File output = new File(tmpDirectory, "map.jpg");
    try {
        OutputStream outputStream = new FileOutputStream(output);
        bitmap.compress(Bitmap.CompressFormat.JPEG, 100, outputStream);
        outputStream.flush();
        outputStream.close();
    } catch (Exception ex) {
        Message("error!");
    }

    directory = tmpDirectory;//updating directory to load the manipulated image
    readFile(directory + "map.jpg", false);//setting the image view new image

包含图像:picture after iterations 图片包括: main image

JPEG 使用有损压缩。这意味着每次迭代都会损失一些质量。如果你想保留它,你应该使用像PNG这样的无损格式。

bitmap.compress(Bitmap.CompressFormat.PNG, 100, outputStream);