gpt4 book ai didi

android - 将图像从 DCIM 文件夹复制到另一个文件夹会导致图像质量下降

转载 作者:行者123 更新时间:2023-11-30 02:40:16 24 4
gpt4 key购买 nike

我在我的 Activity 中使用默认相机 Intent 来捕捉图像。之后,我将它们的路径存储在一个数组中。在 Activity 结束时,我将图像复制到我的应用程序文件夹中。由于某种原因,图像没有以完整质量复制。例如:如果 DCIM 文件夹中的图像是 1.04 MB,那么它在我的应用程序文件夹中只有 ~2KB。

我在我的应用程序中使用此代码。调用相机 Intent :

Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(intent, 1);

在 onActivity 结果中我正在做:

Bitmap photo = (Bitmap) data.getExtras().get("data");

Uri tempUri = getImageUri(context, photo);

imagePath = getRealPathFromURI(tempUri);

imagesList.add(imagePath);

getImageUri() 和 getRealPathFromURI() 方法是:

public Uri getImageUri(Context inContext, Bitmap inImage) {
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
inImage.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
String path = Images.Media.insertImage(inContext.getContentResolver(),
inImage, "Title", null);
return Uri.parse(path);
}

public String getRealPathFromURI(Uri uri) {
Cursor cursor = context.getContentResolver().query(uri, null, null,
null, null);
cursor.moveToFirst();
int idx = cursor.getColumnIndex(MediaStore.Images.ImageColumns.DATA);
return cursor.getString(idx);
}

在 Activity 结束时,我使用此方法将图像复制到我的应用程序文件夹:

 for (int i = 0; i < noteImagesList.size(); i++) {

File fileimg = new File(noteImagesList.get(i));

File newImageFile = new File(parentfolderpath,
i+"_newimage.jpg");
newImageFile.createNewFile();

Bitmap myBitmap = BitmapFactory.decodeFile(fileimg
.getAbsolutePath());

FileOutputStream fOut = new FileOutputStream(
newImageFile);

myBitmap.compress(Bitmap.CompressFormat.JPEG, 100, fOut);
fOut.flush();
fOut.close();

if (myBitmap != null) {

if (!myBitmap.isRecycled()) {
myBitmap.recycle();
}

myBitmap = null;
}


}

复制后,图像失去了质量和尺寸。 DCIM 文件夹中的图像很清晰,大约 1 MB,复制后图像模糊,大约 1 KB。

谁能告诉我在复制图像时遗漏了什么?

编辑

如果我将它用于从图库中选择的图像,上面的代码工作正常,但仍然没有相机图像。

编辑2

我也用过这段代码,但结果相同。

public void copyFile(File src, File dst) throws IOException {
FileChannel inChannel = new FileInputStream(src).getChannel();
FileChannel outChannel = new FileOutputStream(dst).getChannel();
try {
inChannel.transferTo(0, inChannel.size(), outChannel);
} finally {
if (inChannel != null)
inChannel.close();
if (outChannel != null)
outChannel.close();
}
}

最佳答案

文档说,如果您传递一个 URI 指示写入文件的位置,那么您将在 extras 数据中取回完整尺寸的图像。但是,如果您不传递 URI,则会返回一个小版本(缩略图)。

因为您没有传递 URI,所以您正在获取缩略图,然后进行保存。/复制它,而不是全尺寸版本。

关于android - 将图像从 DCIM 文件夹复制到另一个文件夹会导致图像质量下降,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25866163/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com