缩小图像以符合意图

发布于 2024-10-11 06:59:44 字数 155 浏览 2 评论 0原文

我必须在意图中发送一个位图作为意图额外。问题是,意图的最大数据大小为 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 技术交流群。

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

发布评论

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

评论(3

请止步禁区 2024-10-18 06:59:44

使用位图的缩放位图方法来指定缩小/放大图像的大小。

use scaled bitmap method of bitmap to specifying size of your scaled down/up image.

吹泡泡o 2024-10-18 06:59:44

Bitmap.createScaledBitmap() 方法具有所需目标高度和宽度的参数。
你试过这个吗?

The Bitmap.createScaledBitmap() method has parameters for the desired target height en width.
Have you tried this?

或十年 2024-10-18 06:59:44
Bitmap photoBitmap = Bitmap.createScaledBitmap (photoBitmap, dest_width, dest_height, false);
Bitmap photoBitmap = Bitmap.createScaledBitmap (photoBitmap, dest_width, dest_height, false);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文