web-dev-qa-db-ja.com

カメラインテントで写真を撮り、imageViewとtextViewに表示しますか?

カメラインテント(またはカメラAPI)を使用して画像を取得し、その画像をimageViewに取り込んで、アプリケーションに表示する方法について質問があります。これは私が今まで持っているものです。

ボタンを設定します

Button btnPicture = (Button) findViewById(R.id.btn_picture);
    btnPicture.setOnClickListener(this);

カメラメソッドを設定します

private void Camera() {
    Intent intent = new Intent(Android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
    startActivityForResult(intent, TAKE_PICTURE_CODE);
    intent.setAction(Intent.ACTION_GET_CONTENT);
    intent.addCategory(Intent.CATEGORY_OPENABLE);
    startActivityForResult(intent, REQUEST_CODE);
}

そして、これは私が迷子になっているところです。撮った画像を処理しようとしています。

    private void processImage(Intent intent) {
    setContentView(R.layout.imagelayout);
    ImageView imageView = (ImageView)findViewById(R.id.image_view);
    cameraBitmap = (Bitmap)intent.getExtras().get("data");
    imageView.setImageBitmap(cameraBitmap);
}

私の意図は、image_view内で撮影した画像を表示することです。エラーが発生していません。何も起こりません。写真を撮るとき、別の写真を撮るように求められるか、デバイスの戻るボタンを使用した後、適用力が閉じます。アプリケーションから完全に削除されたようで、返品は大きな問題です。助言がありますか?何が足りないのですか?

はい、これが私のonActivityResultです

    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
        if(TAKE_PICTURE_CODE == requestCode) {

        Bundle extras = data.getExtras();
        if (extras.containsKey("data")) {
            Bitmap bmp = (Bitmap) extras.get("data");
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            bmp.compress(Bitmap.CompressFormat.PNG, 100, baos);
            byte[] image = baos.toByteArray();
            if (image != null) {
                Log.d(TAG, "image != null");
            }

        } else {
            Toast.makeText(getBaseContext(), "Fail to capture image", Toast.LENGTH_LONG).show();
        }

    }
}

画像をgetExtrasに入れて、ByteArrayに保存しようとしています。私がやろうとしていたもう一つのことでした。すべてがどのように組み合わされるのかわかりません。

8

私が簡単で役立つと思った方法はこれです:

MainActivity

private static String root = null;
private static String imageFolderPath = null;        
private String imageName = null;
private static Uri fileUri = null;
private static final int CAMERA_IMAGE_REQUEST=1;

public void captureImage(View view) {

    ImageView imageView = (ImageView) findViewById(R.id.capturedImageview);

             // fetching the root directory
     root = Environment.getExternalStorageDirectory().toString()
     + "/Your_Folder";

     // Creating folders for Image
     imageFolderPath = root + "/saved_images";
     File imagesFolder = new File(imageFolderPath);
     imagesFolder.mkdirs();

    // Generating file name
    imageName = "test.png";

    // Creating image here

    File image = new File(imageFolderPath, imageName);

    fileUri = Uri.fromFile(image);

    imageView.setTag(imageFolderPath + File.separator + imageName);

    Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

    takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri);

    startActivityForResult(takePictureIntent,
            CAMERA_IMAGE_REQUEST);

}

そしてあなたの活動でonActivityResultメソッド:

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    // TODO Auto-generated method stub
    super.onActivityResult(requestCode, resultCode, data);

    if (resultCode == RESULT_OK) {

        switch (requestCode) {
        case CAMERA_IMAGE_REQUEST:

            Bitmap bitmap = null;
            try {
                GetImageThumbnail getImageThumbnail = new GetImageThumbnail();
                bitmap = getImageThumbnail.getThumbnail(fileUri, this);
            } catch (FileNotFoundException e1) {
                // TODO Auto-generated catch block
                e1.printStackTrace();
            } catch (IOException e1) {
                // TODO Auto-generated catch block
                e1.printStackTrace();
            }

            // Setting image image icon on the imageview

            ImageView imageView = (ImageView) this
                    .findViewById(R.id.capturedImageview);

            imageView.setImageBitmap(bitmap);

            break;

        default:
            Toast.makeText(this, "Something went wrong...",
                    Toast.LENGTH_SHORT).show();
            break;
        }

    }
}

GetImageThumbnail.Java

public class GetImageThumbnail {

private static int getPowerOfTwoForSampleRatio(double ratio) {
    int k = Integer.highestOneBit((int) Math.floor(ratio));
    if (k == 0)
        return 1;
    else
        return k;
}

public Bitmap getThumbnail(Uri uri, Context context)
        throws FileNotFoundException, IOException {
    InputStream input = context.getContentResolver().openInputStream(uri);

    BitmapFactory.Options onlyBoundsOptions = new BitmapFactory.Options();
    onlyBoundsOptions.inJustDecodeBounds = true;
    onlyBoundsOptions.inDither = true;// optional
    onlyBoundsOptions.inPreferredConfig = Bitmap.Config.ARGB_8888;// optional
    BitmapFactory.decodeStream(input, null, onlyBoundsOptions);
    input.close();
    if ((onlyBoundsOptions.outWidth == -1)
            || (onlyBoundsOptions.outHeight == -1))
        return null;

    int originalSize = (onlyBoundsOptions.outHeight > onlyBoundsOptions.outWidth) ? onlyBoundsOptions.outHeight
            : onlyBoundsOptions.outWidth;

    double ratio = (originalSize > 400) ? (originalSize / 350) : 1.0;

    BitmapFactory.Options bitmapOptions = new BitmapFactory.Options();
    bitmapOptions.inSampleSize = getPowerOfTwoForSampleRatio(ratio);
    bitmapOptions.inDither = true;// optional
    bitmapOptions.inPreferredConfig = Bitmap.Config.ARGB_8888;// optional
    input = context.getContentResolver().openInputStream(uri);
    Bitmap bitmap = BitmapFactory.decodeStream(input, null, bitmapOptions);
    input.close();
    return bitmap;
}
}

次に、ImageView onclickメソッドは次のようになります。

public void showFullImage(View view) {
    String path = (String) view.getTag();

    if (path != null) {

        Intent intent = new Intent();
        intent.setAction(Intent.ACTION_VIEW);
        Uri imgUri = Uri.parse("file://" + path);
        intent.setDataAndType(imgUri, "image/*");
        startActivity(intent);

    }

}
15
Atish Agrawal

写真を正しく撮影するには、結果の意図のデータがnullになる可能性があるため、一時ファイルに保存する必要があります。

final Intent pickIntent = new Intent();
pickIntent.setType("image/*");
pickIntent.setAction(Intent.ACTION_GET_CONTENT);
final String pickTitle = activity.getString(R.string.choose_image);
final Intent chooserIntent = Intent.createChooser(pickIntent, pickTitle);
if (AvailabilityUtils.isExternalStorageReady()) {
    final Intent takePhotoIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    final Uri fileUri = getCameraTempFileUri(activity, true);
    takePhotoIntent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri);
    chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS,
    new Intent[] { takePhotoIntent });
}

activity.startActivityForResult(chooserIntent, REQUEST_CODE);

そして、Uriから写真を取得します。

if (requestCode == ProfileDataView.REQUEST_CODE
                && resultCode == Activity.RESULT_OK) {
            final Uri dataUri = data == null ? getCameraTempFileUri(context,
                false) : data.getData();
                final ParcelFileDescriptor pfd = context.getContentResolver()
                    .openFileDescriptor(imageUri, "r");
                final FileDescriptor fd = pfd.getFileDescriptor();
                final Bitmap bitmap = BitmapFactory.decodeFileDescriptor(fd);
        }
3
Bracadabra