4

尝试裁剪用户从他们的图库中选择的图像时,我的程序遇到了问题。到目前为止,该问题仅在 Droid X 上运行时出现,因为在原始 moto Droid 上运行正常。

基本上,在运行裁剪意图时会出现问题。一旦用户裁剪照片并单击保存按钮,它就会用保存的裁剪图像替换主屏幕上的壁纸!它不会在 moto droid 或模拟器上执行此操作。下面是裁剪图片并将图片保存到 SD 卡的代码:

@Override
public void onActivityResult(int requestCode,int resultCode,Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode ==1){
if (resultCode == Activity.RESULT_OK) {
  Intent i = new Intent("com.android.camera.action.CROP");
  i.setData(data.getData());
  i.putExtra("noFaceDetection", true);
  i.putExtra("outputX", 80);
  i.putExtra("outputY", 80);
  i.putExtra("aspectX", 1);
  i.putExtra("aspectY", 1);
  i.putExtra("scale", true);


if(selectedImageString == null){
      ContentValues values = new ContentValues();
      values.put(android.provider.MediaStore.Images.Media.TITLE, "Temp_Icon1");
      values.put(android.provider.MediaStore.Images.Media.BUCKET_ID, "Temp_Icons");
      values.put(android.provider.MediaStore.Images.Media.BUCKET_DISPLAY_NAME,"Temp_Icons");
      values.put(android.provider.MediaStore.Images.Media.IS_PRIVATE, 1);
      selectedImageString = getContentResolver().insert(android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values).toString();
  }
  i.putExtra("output", Uri.parse(selectedImageString));
  startActivityForResult(i, 2);
}
}
 if(requestCode == 2){
 if (resultCode == Activity.RESULT_OK){
  uriPath = Uri.parse(selectedImageString);
  imageView.setImageURI(uriPath);
 }
}

}

有人可以帮我吗?

4

3 回答 3

3

即使使用上面提到的“输出”选项,我也可以验证 Droid X 是否为我做同样的事情。到目前为止,我还没有找到解决办法,我也会考虑阻止 Droid X 手机的裁剪功能。很遗憾它在这里不起作用。

顺便说一句,您可以尝试以下方法...

i.putExtra("return-data", true);

这将返回返回意图中的图像。您可以通过以下方式访问它...

BitMap BM = data.getParcelableExtra("data");

但是,Galaxy S 系列手机不支持此功能。无论如何,它都会返回一个空包裹。所以,我还没有找到好的解决方案。

于 2010-10-06T18:39:50.277 回答
1

可能是因为您在调用裁剪意图时没有指定数据的放置位置,因此它正在覆盖图像。

我认为裁剪意图是内部代码,所以我不确定我们是否可以确定(顺便说一句,所有手机上都没有找到裁剪意图)

当我调用作物意图时,我通过

i.putExtra("output", croppedOutputUri);
于 2010-09-17T15:38:24.893 回答
0

您是否尝试过放置:

i.putExtra("setWallpaper", false);

I took it from here: https://github.com/lvillani/android-cropimage/blob/master/src/com/android/camera/CropImage.java

theres a library whihc was probably takien from original sources and modified and you can see this attribute set there

于 2013-07-08T11:27:41.347 回答