缩小图像以适应意图

时间:2011-01-06 12:45:09

标签: android image bitmap android-intent scale

我必须在intent中发送一个位图作为intent-extra。问题是,意图的最大数据大小是50KB。如何缩小位图以适应意图?

AFAIK相机应用也会将图像预览放入MediaStore.ACTION_IMAGE_CAPTURE的结果意图中。

3 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

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

答案 2 :(得分:0)

Bitmap photoBitmap = Bitmap.createScaledBitmap (photoBitmap, dest_width, dest_height, false);