无法裁剪大图像

发布于 2024-10-09 01:34:53 字数 237 浏览 3 评论 0原文

我的应用程序需要打开图库并选择要裁剪的图像。我将目标尺寸设置为一个值(87%*screenWide)。现在,问题出现了。在大屏幕设备中,图库无法返回裁剪后的图像,并且日志显示“!!! FAILED BINDER TRANSACTION !!!”。在大多数设备中,这是可以的。

有人可以帮助我吗?谢谢!

我使用Intent.ACTION_GET_CONTENT进行裁剪,并设置outputX、outputY等。裁剪图像是常规操作。

My application needs to open the gallery and pick an image to crop. I set the target size as a value(87%*screenWide). Now, problems occur. In large screen devices, the gallery failed to return the cropped image and the log said "!!! FAILED BINDER TRANSACTION !!!". In most of the devices, it is OK.

Can any one help me for this? Thanks!

I use Intent.ACTION_GET_CONTENT to crop, and set the outputX, outputY etc. It's routine to crop images.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

知足的幸福 2024-10-16 01:34:53

我遇到了类似的问题。如果您使用 Android 的默认裁剪工具,则它的最大裁剪尺寸限制为 256x256。将作物的大小设置为小于或等于该值,就可以了。

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

I ran into a similar problem. If you're using Android's default cropping tool, it has a 256x256 max crop size limitation. Set the size of your crop to smaller or equal to that and you'll be fine.

intent.putExtra("outputX", 256);
intent.putExtra("outputY", 256);
烟酉 2024-10-16 01:34:53

尝试发送如下意图:

mSavedUri = Uri.fromFile(new File("/sdcard/cropped.jpg"));

mImageSelectIntent = new Intent(Intent.ACTION_GET_CONTENT, null);
mImageSelectIntent.setType("image/*");
mImageSelectIntent.putExtra("crop", "true");
mImageSelectIntent.putExtra("aspectX", 4);
mImageSelectIntent.putExtra("aspectY", 3);
mImageSelectIntent.putExtra("outputX", mImageWidth);
mImageSelectIntent.putExtra("outputY", mImageHeight);
mImageSelectIntent.putExtra("output", mSavedUri);

裁剪后的图像将保存为裁剪后的 JPG,并且不会通过“数据”返回给您。

Try sending the intent as below:

mSavedUri = Uri.fromFile(new File("/sdcard/cropped.jpg"));

mImageSelectIntent = new Intent(Intent.ACTION_GET_CONTENT, null);
mImageSelectIntent.setType("image/*");
mImageSelectIntent.putExtra("crop", "true");
mImageSelectIntent.putExtra("aspectX", 4);
mImageSelectIntent.putExtra("aspectY", 3);
mImageSelectIntent.putExtra("outputX", mImageWidth);
mImageSelectIntent.putExtra("outputY", mImageHeight);
mImageSelectIntent.putExtra("output", mSavedUri);

The cropped image will be saved as a cropped JPG and not returned to you via "data".

烟─花易冷 2024-10-16 01:34:53

对于壁纸问题,尝试显式设置:

your_intent.putExtra("setWallpaper", false);

Re the wallpaper problem, try setting explicitly:

your_intent.putExtra("setWallpaper", false);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文