裁剪图像意图,返回值

时间:2014-12-12 13:10:46

标签: android android-intent crop

我在Android应用程序中找到了启动裁剪意图的代码:

 Bitmap bitmap = BitmapFactory.decodeFile(mFile.getPath());
 Intent cropIntent = new Intent("com.android.camera.action.CROP");
 cropIntent.setDataAndType(Uri.fromFile(mFile), "image/*");
 cropIntent.putExtra("crop", "true");
 cropIntent.putExtra("aspectX", 1);
 cropIntent.putExtra("aspectY", 1);
 cropIntent.putExtra("outputX", 256);
 cropIntent.putExtra("outputY", 256);
 cropIntent.putExtra("return-data", true);
 startActivityForResult(cropIntent, 2);

现在我想把这个信息放在里面:

  • 图片输出名称和路径
  • 图片输出格式(jpeg)
  • 图片输出质量

我该怎么办?

0 个答案:

没有答案