简体   繁体   English

使用相机拍摄照片并将其保存到图库

[英]Taking a photo with Camera and saving it to Gallery

I am trying to take a photo with the camera and save it to the Gallery.我正在尝试用相机拍照并将其保存到图库。 This is what I have done so far:这是我到目前为止所做的:

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main5);

  button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
                    if (checkSelfPermission(Manifest.permission.CAMERA) != PackageManager.PERMISSION_GRANTED) {
                        ActivityCompat.requestPermissions(Main5Activity.this,
                                new String[]{android.Manifest.permission.CAMERA}, RequestCameraPermissionID);

                    }
                }

                if (ActivityCompat.checkSelfPermission(getApplicationContext(),
                        Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
                    ActivityCompat.requestPermissions(Main5Activity.this, new String[]{android.Manifest.permission.WRITE_EXTERNAL_STORAGE}, REQUEST_PERM_WRITE_STORAGE);

                } else {
                    takePhoto();
                }
            }
        });


    }

public void initialze()
{
    imageView = (ImageView)findViewById(R.id.image);
    button = (Button) findViewById(R.id.camera);
}
    public void takePhoto()
    {

        Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
        startActivityForResult(cameraIntent,CAPTURE_PHOTO);
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        if(resultCode == RESULT_OK){

            switch (requestCode)
            {
                case CAPTURE_PHOTO:
                    Toast.makeText(this, "Saved to Gallery", Toast.LENGTH_SHORT).show();
                    bitmap = (Bitmap)data.getExtras().get("data");
                    imageView.setImageBitmap(bitmap);

                    break;
                default:
                    break;
            }


        }

    }

I am having trouble writing the saving to gallery code.我在编写保存到图库代码时遇到问题。 Where do I call the save to gallery function and is there an inbuilt function in android which helps me do this.我在哪里调用保存到图库功能,android 中是否有一个内置功能可以帮助我做到这一点。

In your void initialze() method call the saveImagetoGallery function:在您的void initialze()方法中调用saveImagetoGallery函数:

public void initialze()
{
    imageView = (ImageView)findViewById(R.id.image);
    button = (Button) findViewById(R.id.camera);
}
    public void takePhoto()
    {

        Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
        startActivityForResult(cameraIntent,CAPTURE_PHOTO);
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        if(resultCode == RESULT_OK){

            switch (requestCode)
            {
                case CAPTURE_PHOTO:
                    Toast.makeText(this, "Saved to Gallery", Toast.LENGTH_SHORT).show();
                    bitmap = (Bitmap)data.getExtras().get("data");
                    imageView.setImageBitmap(bitmap);
                    saveImagetoGallery(bitmap); // Added this 
                    break;
                default:
                    break;
            }


        }

    }

The saveImagetoGallery function is : saveImagetoGallery函数是:

private void saveImagetoGallery(Bitmap finalBitmap){

        String root = Environment.getExternalStorageDirectory().toString();
        File myDir = new File(root+"/saveImage");
        myDir.mkdirs();
        Random random = new Random();
        int n = 10000;
        n = random.nextInt(n);
        String imageName = "Image"+n+".jpg";
        File file = new File(myDir,imageName);
        Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
        if(file.exists())file.delete();
        try{
            FileOutputStream out = new FileOutputStream(file);
            finalBitmap.compress(Bitmap.CompressFormat.JPEG,90,out);
            String string = file.getAbsolutePath();
            Uri contentUri = Uri.fromFile(file);
            mediaScanIntent.setData(contentUri);
            this.sendBroadcast(mediaScanIntent);
            out.flush();
            out.close();

        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

I am assuming you have written the permissions in the Android.Manifest.xml file.我假设您已经在Android.Manifest.xml文件中写入了权限。

If you haven't, add this:如果还没有,请添加以下内容:

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

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

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM