我在使用相机意图拍照时遇到一些问题。在我和我的一些朋友的设备中都可以,但是以某种方式在三星设备中(主要是)显示了一个小错误。当我拍照时,捕获的图像的预览似乎太模糊了。我已经在互联网上搜索了所有内容,但没有找到答案。
我唯一不了解的是,我的代码在我的设备测试中表现良好,顺便说一句,我正在使用Google代码,因此,我很确定在所有设备上都可以。现在我很困惑,不知道该怎么办。
这是我的代码:
我的意图方法:
private void dispatchTakePictureIntent() {
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
File photoFile = null;
try {
photoFile = createImageFile();
} catch (IOException ex) {
}
if (photoFile != null) {
Uri photoURI = FileProvider.getUriForFile(this,
"com.codelabs.refillmybottle.fileprovider",
photoFile);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
startActivityForResult(takePictureIntent, 1);
}
}
}
onActivityResult:
if (resultCode == RESULT_OK) {
if (requestCode == 1) {
File imgFile = new File(mCurrentPhotoPath);
Log.d(TAG, "imgfile size : " + imgFile.length());
if(imgFile.exists()){
Uri bp = Uri.fromFile(imgFile);
Bitmap mybitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
Bitmap bitmap = decodeUri(bp,300);
chipdata++;
encodedeImageData[chipdata - 1] = getEncoded64ImageStringFromBitmap(bitmap);
checkChipData();
checkData();
}
}
decodeUri是一种将Uri解码为位图并调整其大小的方法。
我确实希望任何人都可以回答我的错误,因为我的老板对我生气并且我很困惑:D。谢谢。
答案 0 :(得分:0)
相机中的最佳代码拍摄照片
private int REQUEST_CAMERA = 0;
String realPath;
private void cameraIntent() {
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(intent, REQUEST_CAMERA);
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == Activity.RESULT_OK && data != null) {
if (requestCode == REQUEST_CAMERA)
onCaptureImageResult(data);
}
private void onCaptureImageResult(Intent data) {
Bitmap photo = (Bitmap) data.getExtras().get("data");
binding.profileImage.setImageBitmap(photo);
// CALL THIS METHOD TO GET THE URI FROM THE BITMAP
Uri tempUri = getImageUri(getApplicationContext(), photo);
// CALL THIS METHOD TO GET THE ACTUAL PATH
}
private Uri getImageUri(Context inContext, Bitmap inImage) {
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
inImage.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
realPath =MediaStore.Images.Media.insertImage(inContext.getContentResolver(),
inImage, "Title", null);
return Uri.parse(realPath);
}