我在尝试从相机和图像选择器创建位图时遇到了麻烦。
我使用了一个代码,通过相机创建了一个Uri,所以我为我的函数添加了一个条件,它已经从图库加载了图片。 这是onActivityResult:
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == RESULT_LOAD_IMAGE || requestCode == RESULT_CAMERA) {
Uri selectedImage = null;
if(requestCode == RESULT_LOAD_IMAGE)
{
selectedImage = data.getData();
}
else if(requestCode == RESULT_CAMERA)
{
selectedImage = imageUri;
}
if(resultCode == RESULT_OK && null != data) {
String[] filePathColumn = {MediaStore.Images.Media.DATA};
imgViewScan.setImageURI(selectedImage);
try {
InputStream stream = getContentResolver().openInputStream(
selectedImage);
bitmapLoaded = BitmapFactory.decodeStream(stream);
} catch (IOException e) {
Log.e("ScanAc", e.toString());
}
}
}
}
这是相机的onClick:
View.OnClickListener takePicture = new View.OnClickListener() {
public void onClick(View v) {
String fileName = "new-photo-name.jpg";
//create parameters for Intent with filename
ContentValues values = new ContentValues();
values.put(MediaStore.Images.Media.TITLE, fileName);
values.put(MediaStore.Images.Media.DESCRIPTION,"Image capture by camera");
//imageUri is the current activity attribute, define and save it for later usage (also in onSaveInstanceState)
imageUri = getContentResolver().insert(
MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
//create new Intent
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);
intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);
Intent i = new Intent(
MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(i, RESULT_CAMERA);
}
};
我想精确地说画廊图片选择完美,问题只出在相机上......
答案 0 :(得分:2)
private void onClickCamera() {
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
if (takePictureIntent.resolveActivity(context.getPackageManager()) != null) {
ContentValues values = new ContentValues(1);
values.put(MediaStore.Images.Media.MIME_TYPE, "image/jpg");
fileUri = getContentResolver().insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri);
takePictureIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
startActivityForResult(takePictureIntent, SELECT_PICTURE_CAMARA);
} else {
Toast.makeText(this, getString(R.string.error_no_camera), Toast.LENGTH_LONG).show();
}
}
在takePicture clickListener
中尝试此操作
答案 1 :(得分:0)
您可以尝试创建如下的临时文件。 在onOnClick事件
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
File f = new File(android.os.Environment.getExternalStorageDirectory(), "temp.jpg");
intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(f));
和onActivityResult
File f = new File(android.os.Environment.getExternalStorageDirectory(), "temp.jpg");
BitmapFactory.Options bitmapOptions = new BitmapFactory.Options();
Bitmap bitmap = BitmapFactory.decodeFile(f.getAbsolutePath(), bitmapOptions);