如何以解码过程应该减小图像大小的方式在android中解码大图像?
使用的代码:
Bitmap bmp= BitmapFactory.decodeStream(MainActivity.this.getAssets().open("index.png"));
如何以解码过程应该减小图像大小的方式在android中解码大图像?
使用的代码:
Bitmap bmp= BitmapFactory.decodeStream(MainActivity.this.getAssets().open("index.png"));
检查这个,它可能会有所帮助
尝试使用 BitmapFactory.Options 解码图像
查看以下链接了解更多详情
http://android-coding.blogspot.in/2011/06/reduce-bitmap-size-using.html
谢谢。