简体   繁体   English

如何将以相机意图拍摄的图像设置为ImageView?

[英]How can i set an image taken from the Camera intent into a ImageView?

in my app the user can take an image from the camera intent and then i want to return that image to an image view. 在我的应用程序中,用户可以从相机意图中拍摄图像,然后我想将该图像返回到图像视图。 How can i do that? 我怎样才能做到这一点?

Here is my camera intent: 这是我的摄影意图:

Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
startActivityForResult(intent, TAKE_PICTURE);

And onActivityResult onActivityResult

protected void onActivityResult(int requestCode, int resultCode, Intent data)
    { 
        //Check that request code matches ours:
        if (requestCode == TAKE_PICTURE)
        {
            //Check if your application folder exists in the external storage, if not create it:
            File imageStorageFolder = new File(Environment.getExternalStorageDirectory()+File.separator+"Kruger National Park");
            if (!imageStorageFolder.exists())
            {
                imageStorageFolder.mkdirs();
                Log.d(TAG , "Folder created at: "+imageStorageFolder.toString());
            }

            //Check if data in not null and extract the Bitmap:
            if (data != null)
            {
                String filename = "image";
                String fileNameExtension = ".jpg";
                File sdCard = Environment.getExternalStorageDirectory();
                String imageStorageFolder1 = File.separator+"Kruger National Park"+File.separator;
                File destinationFile = new File(sdCard, imageStorageFolder1 + filename + fileNameExtension);
                Log.d(TAG, "the destination for image file is: " + destinationFile );
                if (data.getExtras() != null)
                {
                    Bitmap bitmap = (Bitmap)data.getExtras().get("data");
                    try
                    {
                        FileOutputStream out = new FileOutputStream(destinationFile);
                        bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out);
                        out.flush();
                        out.close();
                    }
                    catch (Exception e)
                    {
                        Log.e(TAG, "ERROR:" + e.toString());
                    }

That all works but just want to add it now to my ImageView: 一切正常,但只想立即将其添加到我的ImageView中:

ImageView image = (ImageView) v.findViewById(R.id.imageV);
        image.setImageResource();

Could someone please help? 有人可以帮忙吗?

Here's an example activity that will launch the camera app and then retrieve the image and display it. 这是一个示例活动,将启动相机应用程序,然后检索图像并显示它。

package edu.gvsu.cis.masl.camerademo;

import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;

public class MyCameraActivity extends Activity {
private static final int CAMERA_REQUEST = 1888; 
private ImageView imageView;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    this.imageView = (ImageView)this.findViewById(R.id.imageView1);
    Button photoButton = (Button) this.findViewById(R.id.button1);
    photoButton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            Intent cameraIntent = new     Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); 
            startActivityForResult(cameraIntent, CAMERA_REQUEST); 
        }
    });
}

protected void onActivityResult(int requestCode, int resultCode, Intent data) {  
    if (requestCode == CAMERA_REQUEST && resultCode == RESULT_OK) {  
        Bitmap photo = (Bitmap) data.getExtras().get("data"); 
        imageView.setImageBitmap(photo);
    }  
} 

} Note that the camera app itself gives you the ability to review/retake the image, and once an image is accepted, the activity displays it. }请注意,相机应用程序本身使您能够查看/重新拍摄图像,一旦图像被接受,活动就会显示该图像。

Here is the layout that the above activity uses. 这是上述活动使用的布局。 It is simply a LinearLayout containing a Button with id button1 and an ImageView with id imageview1: 它只是一个LinearLayout,其中包含ID为button1的Button和ID为imageview1的ImageView:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button android:id="@+id/button1" android:layout_width="wrap_content"     android:layout_height="wrap_content" android:text="@string/photo"></Button>
<ImageView android:id="@+id/imageView1" android:layout_height="wrap_content"     android:src="@drawable/icon" android:layout_width="wrap_content"></ImageView>

</LinearLayout>

And one final detail, be sure to add: 最后一个细节,请务必添加:

<uses-feature android:name="android.hardware.camera"></uses-feature> 

and if camera is optional to your app functionality. 以及相机是否对您的应用程序功能而言是可选的。 make sure to set require to false in the permission. 确保在权限中将require设置为false。 like this 像这样

<uses-feature android:name="android.hardware.camera" android:required="false"></uses-feature>

to your manifest.xml. 到您的manifest.xml。

Do you mean this? 你是这个意思吗

image.setImageBitmap(bitmap);

To rotate the bitmap back to its original orientation, you can use the following code. 要将位图旋转回其原始方向,可以使用以下代码。

        ExifInterface exif = new ExifInterface(path);
        int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);

        int angle = 0;

        if (orientation == ExifInterface.ORIENTATION_ROTATE_90)
            angle = 90;
        else if (orientation == ExifInterface.ORIENTATION_ROTATE_180)
            angle = 180;
        else if (orientation == ExifInterface.ORIENTATION_ROTATE_270)
            angle = 270;

        Matrix mat = new Matrix();
        mat.postRotate(angle);
        Bitmap result = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight, mat, true);

The String 'path' here is the path to the file where the picture was stored. 此处的字符串“路径”是存储图片的文件的路径。 It's the only code I have available at this time for that problem. 这是我目前唯一可以解决该问题的代码。 I hope this will help you. 我希望这能帮到您。 What might be interesting in this case is that you can also give a file to the intent. 在这种情况下,可能有趣的是您还可以将文件提供给意图。 The photo will be stored in that file. 照片将存储在该文件中。

intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(destinationFile));

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何在图库中的imageView上设置图像以及在Android中由相机拍摄的图像? - How to set an image on imageView from the gallery and image taken by camera in Android? 将从相机拍摄的图像设置为ImageView - Set image taken from camera into an ImageView 如何将相机拍摄的图像设置为ImageView? - How to set an image taken by the camera in to an ImageView? 如何保存从相机意图拍摄的图像用作个人资料图像? - How can i save the image taken from camera intent to be used as a profile image? 从相机 Intent 检索图像 URI 并将图像设置为 Imageview - Retrieve Image URI from camera Intent and set the Image to Imageview 无法将从相机拍摄的图像加载到ImageView中 - Can't load image taken from camera into an ImageView 如何在Android中的另一个活动ImageView中显示由自定义相机(SurfaceView)拍摄的捕获图像 - How can i display capture image taken by custom camera(surfaceview) in another activity imageview in android 如何显示从相机拍摄的图像 - How can I show image taken from camera 如何将从相机拍摄的图像保存到内部存储器中 - How can I save image taken from camera into internal storage 如何从Android Intent访问使用相机拍摄的全尺寸图像? - How do I access the full size image taken with the camera from an Android Intent?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM