缩小图像以符合意图
我必须在意图中发送一个位图作为意图额外。问题是,意图的最大数据大小为 50KB。如何缩小位图以适应意图?
据我所知,相机应用程序也会执行相同的操作,将图像预览放入 MediaStore.ACTION_IMAGE_CAPTURE
的结果 Intent 中。
I have to send a bitmap in an intent as intent-extra. The problem is, that the maximum data size of an intent is 50KB. How can I scale down the bitmap to fit into the intent?
AFAIK the camera app does the same to put image previews into the result intent of MediaStore.ACTION_IMAGE_CAPTURE
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用位图的缩放位图方法来指定缩小/放大图像的大小。
use scaled bitmap method of bitmap to specifying size of your scaled down/up image.
Bitmap.createScaledBitmap()
方法具有所需目标高度和宽度的参数。你试过这个吗?
The
Bitmap.createScaledBitmap()
method has parameters for the desired target height en width.Have you tried this?