我必须在intent中发送一个位图作为intent-extra。问题是,意图的最大数据大小是50KB。如何缩小位图以适应意图?
AFAIK相机应用也会将图像预览放入MediaStore.ACTION_IMAGE_CAPTURE
的结果意图中。
答案 0 :(得分:0)
使用位图的缩放位图方法指定缩小/缩小图像的大小。
答案 1 :(得分:0)
Bitmap.createScaledBitmap()
方法具有所需目标高度和宽度的参数。
你试过这个吗?
答案 2 :(得分:0)
Bitmap photoBitmap = Bitmap.createScaledBitmap (photoBitmap, dest_width, dest_height, false);