在我的应用程序中保存照片

时间:2014-06-25 11:34:34

标签: java android bitmap uri photo

我正在尝试保存我已在我的应用程序中捕获的照片(稍后将其用作我的联系人的图标)但我不知道是否必须将其从uri更改为位图或任何其他类型。我想将它保存为.png,就像我的其他照片一样

Intent galleryIntent = new Intent(Intent.ACTION_GET_CONTENT);
        galleryIntent.setType("image/*");
        startActivityForResult(galleryIntent, 1020);

    }

    @Override
    public void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if (requestCode == 1020 && resultCode == RESULT_OK) {
            mImageUri = data.getData();
            Uri mImageUri2 = mImageUri;

            Uri aux1=mImageUri;
           Bitmap foto = photoUtils.getImage(aux1);
           Drawable fotofinal =new BitmapDrawable(getResources(),foto);

感谢您的帮助。

0 个答案:

没有答案