无法裁剪大图像
我的应用程序需要打开图库并选择要裁剪的图像。我将目标尺寸设置为一个值(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我遇到了类似的问题。如果您使用 Android 的默认裁剪工具,则它的最大裁剪尺寸限制为 256x256。将作物的大小设置为小于或等于该值,就可以了。
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.
尝试发送如下意图:
裁剪后的图像将保存为裁剪后的 JPG,并且不会通过“数据”返回给您。
Try sending the intent as below:
The cropped image will be saved as a cropped JPG and not returned to you via "data".
对于壁纸问题,尝试显式设置:
Re the wallpaper problem, try setting explicitly: