如何减少android中的图像像素?

时间:2011-11-28 14:21:53

标签: android image

我的图像分辨率为1920X1080像素。我想将其分辨率更改为300X300。

I have tried this link

但它没有用。任何人都可以告诉我我做错了什么?

2 个答案:

答案 0 :(得分:7)

如果您将图像作为Bitmap实例,请使用

Bitmap scaled = Bitmap.createScaledBitmap(yourBitmap, 300, 300, true);

有关位图方法的更多信息,请参见API

答案 1 :(得分:0)

您可以在图像视图中缩放图像,如下所示:

<ImageView
android:id="@+id/image"
android:layout_width="300dp"
android:layout_height="300dp"
android:scaleType="centerInside"
android:src="@drawable/your_image"/>
祝你好运, Arkde