我正在尝试为我的应用实现一项功能,该功能允许用户从图库中选择一些图片以获取一些提案。在应用更改(过滤器,裁剪等)之前,我需要将此图片另存为新图片。
到目前为止,我做到了:
private void pickImageFromGallery(){
/*Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
startActivityForResult(intent, GALLERY_SELECT_PICTURE);*/
Intent getIntent = new Intent(Intent.ACTION_GET_CONTENT);
getIntent.setType("image/*");
Intent pickIntent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
pickIntent.setType("image/*");
Intent chooserIntent = Intent.createChooser(getIntent, "");
chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] {pickIntent});
startActivityForResult(chooserIntent, GALLERY_SELECT_PICTURE);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if(resultCode == RESULT_OK){
if(requestCode == GALLERY_SELECT_PICTURE){
if(data == null){
//TODO SHOW ERROR
return;
}
try {
Bitmap temporaryBitmap = MediaStore.Images.Media.getBitmap(myContext.getContentResolver(), data.getData());
//Tried using inputStream and got the same result
//InputStream inputStream = myContext.getContentResolver().openInputStream(data.getData());
//Bitmap temporaryBitmap = BitmapFactory.decodeStream(inputStream, null, options);
//Just return a file to save the bitmap into (I use the same code in different activities and it works perfectly)
capturedImage = FunctionUtil.getOutputMediaFile(ConstUtil.ids.MEDIA_TYPE_IMAGE);
FileOutputStream outputStream = new FileOutputStream(capturedImage);;
temporaryBitmap.compress(Bitmap.CompressFormat.JPEG, 100, outputStream);
//Just refresh the gallery so my new picture becomes available (I use the same function in different activities and it works fine)
FunctionUtil.refreshMediaGallery(capturedImage);
//HERE I CHECK THE PATH/GALLERY AND NOTICE THE FILE ISN'T SAVED
} catch (Exception e) {
e.printStackTrace();
//TODO SHOW ERROR
}
}else if(requestCode == GALLERY_SELECT_VIDEO){
}
}
}
获取新文件的代码( FunctionUtil.getOutputMediaFile ),刷新库的代码( FunctionUtil.refreshMediaGallery )和保存位图的代码( Bitmap.compress )在同一活动的不同部分工作正常,但图库中的图片只是不保存它们!
当我使用相机API拍摄新照片然后解码到位图时它完美无缺,但是当我从图库中选择图片并解码为位图时,它无效。
答案 0 :(得分:3)
使用此代码
if(requestCode == GALLERY_SELECT_PICTURE){
InputStream inputStream = getContentResolver()
.openInputStream(data.getData());
FileOutputStream fileOutputStream = new FileOutputStream(
outputFile);
copyStream(inputStream, fileOutputStream);
fileOutputStream.close();
inputStream.close();
}
并使用以下方法
public static void copyStream(InputStream input, OutputStream output)
throws IOException {
byte[] buffer = new byte[1024];
int bytesRead;
while ((bytesRead = input.read(buffer)) != -1) {
output.write(buffer, 0, bytesRead);
}
}
或者您也可以使用com.google.api.client.util.IOUtils.copy(InputStream, OutputStream)