我正在使用默认相机意图来捕捉我的活动中的图像。之后,我将他们的路径存储在一个数组中。在活动结束时,我将图像复制到我的应用程序文件夹。由于某种原因,图像不是完全复制的。例如:如果DCIM文件夹中的图像是1.04 MB,那么我的应用程序文件夹中的图像只有~2KB。
我在我的应用中使用此代码。用于调用相机意图:
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(intent, 1);
在onActivity Result中我正在做:
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);
}
在我的活动结束时,我使用此方法将图像复制到我的应用程序文件夹:
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左右,复制后图像模糊不清,约为1KB。
在复制图像时,任何人都可以告诉我缺少什么吗?
修改
上面的代码工作正常,如果我用它来从图库中选择图像,但仍然没有运气相机图像。
修改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();
}
}
答案 0 :(得分:1)
文档说如果你传递一个指示文件写入位置的URI,那么你将获得额外数据中的完整大小的图像。但是,如果您没有传递URI,则会返回一个小版本(缩略图)。
由于您没有传递URI,因此您将获取缩略图,然后保存。 /复制,而不是全尺寸版本。