Android11上Cameraactioncrop功能无法工作
创始人
2024-08-20 11:00:45
0

在Android 11上,Camera intent的crop效果已被弃用,因此无法直接使用。相反,可以使用其他方法在应用程序内创建裁剪效果。以下是一个示例代码:

private Uri mCropUri;
private File mFilePath;

private void startCropIntent() {
   Intent cropIntent = new Intent();

   // 创建一个新的裁剪文件
   try {
       mFilePath = createImageFile();
   } catch (IOException e) {
       e.printStackTrace();
   }

   // 将裁剪文件URI绑定到intent上
   if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
       mCropUri = FileProvider.getUriForFile(this, "com.your.package.fileprovider", mFilePath);
       cropIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
       cropIntent.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
   } else {
       mCropUri = Uri.fromFile(mFilePath);
   }

   cropIntent.setAction("com.android.camera.action.CROP");
   cropIntent.setDataAndType(mImageUri, "image/*");
   cropIntent.putExtra("crop", "true");
   cropIntent.putExtra("aspectX", 1);
   cropIntent.putExtra("aspectY", 1);
   cropIntent.putExtra("outputX", 256);
   cropIntent.putExtra("outputY", 256);
   cropIntent.putExtra("scale", true);
   cropIntent.putExtra("return-data", false);
   cropIntent.putExtra(MediaStore.EXTRA_OUTPUT, mCropUri);

   startActivityForResult(cropIntent, CROP_IMAGE);
}

private File createImageFile() throws IOException {
   // 在应用目录下创建一个新的JPEG文件并返回其路径
   String imageFileName = "JPEG_" + System.currentTimeMillis() + "_";
   File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
   return File.createTempFile(imageFileName, ".jpg", storageDir);
}

其中,createImageFile()方法用于在应用程序目录中创建一个新的JPEG文件,startCropIntent()方法用于启动裁剪意图并获取裁剪后的图像文件的路径。在此示例

相关内容

热门资讯

安装Pillow时遇到了问题:... 遇到这个问题,可能是因为缺少libwebpmux3软件包。解决方法是手动安装libwebpmux3软...
安装React Native时... 当安装React Native时出现构建错误的情况,可以尝试以下解决方法:确保已经安装了最新版本的C...
安装Python库"... 安装Python库"firedrake"的解决方法如下:打开终端或命令提示符(Windows系统)。...
安装Rails时构建webso... 在安装Rails时,如果构建websocket-driver时发生错误,可以尝试以下解决方法:更新系...
安装react-native-... 要安装react-native-onesignal并在应用关闭时仍能接收通知,可以按照以下步骤进行:...
按转换模式过滤日志【%t】。 要按照转换模式过滤日志,可以使用正则表达式来实现。下面是一个示例代码,使用Java语言的Patter...
Apache Nifi在Kub... Apache Nifi可以在Kubernetes上运行,并且已经准备好用于生产环境。下面是一个使用H...
安装ug未能链接到许可证服务器 安装UG未能链接到许可证服务器是UG用户在安装软件时常遇到的问题之一。该问题的解决方法需要技术向的知...
安装React-Scripts... 这是因为React-Scripts使用Facebook工具包中的一些脚本。 joinAdIntere...
安装React Native时... 安装React Native时可能会出现各种错误,下面是一些常见错误和解决方法的代码示例:Error...