裁剪不显示图像且不工作 - android

Posted

技术标签:

【中文标题】裁剪不显示图像且不工作 - android【英文标题】:Crop not showing image and not working - android 【发布时间】:2013-03-31 18:17:18 【问题描述】:

我正在尝试在我的 android 平板电脑中进行裁剪,但它不起作用。

我使用的是 Nexus 10。

嗯...这是我的裁剪代码:

private void doCrop()
    Intent intent = new Intent("com.android.camera.action.CROP");
    intent.setDataAndType(mImageCaptureUri, "image/*");
    List<ResolveInfo> list = getPackageManager().queryIntentActivities( intent, 0 );
    int size = list.size();
    if (size == 0)             
        Toast.makeText(this, "Can not find image crop app", Toast.LENGTH_SHORT).show();
        return;
     else 
        intent.setData(mImageCaptureUri);        
        intent.putExtra("outputX", 648);
        intent.putExtra("outputY", 486);
        intent.putExtra("aspectX", 1);
        intent.putExtra("aspectY", 1);
        intent.putExtra("scale", true);
        intent.putExtra("return-data", true);
        if (size == 1) 
            Intent i        = new Intent(intent);
            ResolveInfo res = list.get(0);
            i.setComponent( new ComponentName(res.activityInfo.packageName, res.activityInfo.name));
            startActivityForResult(i, CROP_RESULT);
         else 
        

    

这是我询问“相机”或“图库”的对话框:

private void startDialog() 
    AlertDialog.Builder myAlertDialog = new AlertDialog.Builder(this);
    myAlertDialog.setTitle("Selecione uma foto!");
    myAlertDialog.setMessage("Choose a source");

    myAlertDialog.setPositiveButton("Gallery", new DialogInterface.OnClickListener() 
        public void onClick(DialogInterface arg0, int arg1) 
            pictureActionIntent = new Intent(Intent.ACTION_GET_CONTENT, null);
            pictureActionIntent.setType("image/*");
            pictureActionIntent.putExtra("return-data", true);
            startActivityForResult(pictureActionIntent, GALLERY_PICTURE);
        
    );

    myAlertDialog.setNegativeButton("Camera", new DialogInterface.OnClickListener() 
        public void onClick(DialogInterface arg0, int arg1) 
            pictureActionIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
            storagePath = Environment.getExternalStorageDirectory().getAbsolutePath() + "/tmp/android.jpg";
            pictureActionIntent.putExtra(MediaStore.EXTRA_OUTPUT, storagePath);
            startActivityForResult(pictureActionIntent, CAMERA_PICTURE);
        
    );
    myAlertDialog.show();
    

这是我的 onActivityResult:

protected void onActivityResult(int requestCode, int resultCode, Intent data) 
    super.onActivityResult(requestCode, resultCode, data);
    Bitmap bmp;
    if (resultCode == RESULT_OK)
        switch (requestCode)
        case GALLERY_PICTURE :
            mImageCaptureUri = data.getData();
            doCrop();
        break;
        case CROP_RESULT :
            Bundle extras = data.getExtras();
            if (extras != null)                
                bmp = extras.getParcelable("data");
                bmp = Bitmap.createScaledBitmap(bmp, 648, 486, true);
                Drawable d = new BitmapDrawable(getResources(),bmp);
                btnTitular.setCompoundDrawablesWithIntrinsicBounds(null, d, null, null);
            
            File f = new File(mImageCaptureUri.getPath());            
            if (f.exists()) f.delete();
            Intent inten3 = new Intent(this, CadTitularActivity.class);
            startActivity(inten3);
        break;
        case CAMERA_PICTURE :
            doCrop();
        break;
        
            

这是发生了什么:

当我从 图库 抓取图像时,会显示裁剪,但是当我单击“确定”以裁剪图像时,它什么也不做。

当我从相机抓拍一张照片时,它什么也没做。它只是显示“正在加载图片”,没有任何反应。

有什么想法吗?

记住:我使用的是 Nexus 10。我已经听说这种裁剪内容不适用于所有设备。

欢迎任何帮助!

谢谢!

【问题讨论】:

【参考方案1】:

我认为问题在于输出 x 和 y 的裁剪意图必须设置为 256 x 256(或更小)。

所以从这里更改代码:

intent.putExtra("outputX", 648);
intent.putExtra("outputY", 486);

对此:

intent.putExtra("outputX", 256);
intent.putExtra("outputY", 256);

它应该适合你。

【讨论】:

以上是关于裁剪不显示图像且不工作 - android的主要内容,如果未能解决你的问题,请参考以下文章

使用 jcrop 裁剪后预览图像不显示

Android:拉伸和裁剪图像(但仍然是纵横比)

裁剪后的Android图像视图仅显示小图像

如何在同一页面上显示裁剪的图像

Android:裁剪图像并在 ImageView 上显示

如何在保持纵横比且不切断图像数据的情况下跨横向和纵向显示图像