1

我正在尝试制作一个应用程序以从图库或谷歌照片中选择图像,然后对其进行裁剪以使其成为我的应用程序背景。我面临的问题是,当我尝试使用谷歌照片裁剪图片时,它会被保存,但应用程序背景没有改变,我没有收到任何崩溃或任何错误,但是当我使用图库应用程序裁剪它时,一切都似乎工作得很好。

这是我选择照片的代码:

Intent i = new Intent(Intent.ACTION_GET_CONTENT, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
                            startActivityForResult(i, SELECT_PICTURE);

case SELECT_PICTURE: {
            if (resultCode == RESULT_OK && null != data) {
                mHandler.post(new Runnable() {
                    @Override
                    public void run() {

                        Uri selectedImageUri = data.getData();
                        InputStream imageStream;
                        Bitmap selectedImage;
                        try {
                            cropCapturedImage(getImageUrlWithAuthority(getApplicationContext(),selectedImageUri));
                        } catch (ActivityNotFoundException aNFE) {
                            //display an error message if user device doesn't support
                            showToast(getString(R.string.error_crop_not_supported));
                            try {
                                String[] filePathColumn = {MediaStore.Images.Media.DATA};
                                Cursor cursor = getContentResolver().query(getImageUrlWithAuthority(getApplicationContext(),selectedImageUri), filePathColumn, null, null, null);
                                cursor.moveToFirst();
                                imageStream = getContentResolver().openInputStream(getImageUrlWithAuthority(getApplicationContext(),selectedImageUri));
                                selectedImage = BitmapFactory.decodeStream(imageStream);

                                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                                selectedImage.compress(Bitmap.CompressFormat.JPEG, 100, baos);
                                byte[] b = baos.toByteArray();
                                String encodedImage = Base64.encodeToString(b, Base64.DEFAULT);
                                //SharePreference to store image
                                PrefManager.putString(Constant.IMAGE_DATA, encodedImage);
                                cursor.close();
                                //set gallery image
                                setChatBackground();
                            } catch (FileNotFoundException e) {
                                e.printStackTrace();
                            }
                        }
                    }
                });
            }

这是我的cropIntent代码:

public void cropCapturedImage(Uri picUri) {
    Intent cropIntent = new Intent("com.android.camera.action.CROP");
    cropIntent.setDataAndType(picUri, "image/*");
    cropIntent.putExtra("crop", "true");
    cropIntent.putExtra("aspectX", 9);
    cropIntent.putExtra("aspectY", 14);
    cropIntent.putExtra("outputX", 256);
    cropIntent.putExtra("outputY", 256);
    cropIntent.putExtra("return-data", true);
    startActivityForResult(cropIntent, CROP_PICTURE);
}

ase CROP_PICTURE: {
            Uri uri = data.getData();
            String[] filePathColumn = {MediaStore.Images.Media.DATA};
            Cursor cursor = getContentResolver().query(uri, filePathColumn, null, null, null);
            if(cursor.moveToFirst()){
                int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
                String yourRealPath = cursor.getString(columnIndex);
            } else {
                //boooo, cursor doesn't have rows ...
            }
            cursor.close();
            String v= data.toString();

            if (resultCode == RESULT_OK && null != data) {
                mHandler.post(new Runnable() {
                    @Override
                    public void run() {
                        try {
                            Bundle extras = data.getExtras();
                            Bitmap thePic = extras.getParcelable("data");
                            ByteArrayOutputStream baos = new ByteArrayOutputStream();
                            thePic.compress(Bitmap.CompressFormat.JPEG, 100, baos);
                            byte[] b = baos.toByteArray();
                            String encodedImage = Base64.encodeToString(b, Base64.DEFAULT);
                            //SharePreference to store image
                            PrefManager.putString(Constant.IMAGE_DATA, encodedImage);
                            //set gallery image
                            setChatBackground();
                        } catch (NullPointerException e) {
                            Log.d(TAG, e.getLocalizedMessage());
                        }
                    }
                });
            }
4

2 回答 2

1

不,Android 没有作物意图

在 Intent 上调用方法startActivity(),动作为com.android.camera.action.CROP。他们这样做是为了裁剪图像。

这是一个非常糟糕的主意。

来源在这里-CommonsBlog

在此处输入图像描述

于 2017-02-02T09:00:25.217 回答
0

尝试记录你的selectedImageUri第一个。

我怀疑谷歌照片返回一个在线文件的 url,而画廊应用程序返回一个本地文件路径。

于 2017-02-02T08:43:57.383 回答