これを使用して画像を圧縮しました:
private Bitmap decodeFile(InputStream is){
//decode image size
BitmapFactory.Options o = new BitmapFactory.Options();
o.inJustDecodeBounds = true;
BitmapFactory.decodeStream(is,null,o);
//Find the correct scale value. It should be the power of 2.
final int REQUIRED_SIZE=100;
int width_tmp=o.outWidth, height_tmp=o.outHeight;
int scale=1;
while(true){
if(width_tmp/2<REQUIRED_SIZE || height_tmp/2<REQUIRED_SIZE)
break;
width_tmp/=2;
height_tmp/=2;
scale*=2;
}
//decode with inSampleSize
BitmapFactory.Options o2 = new BitmapFactory.Options();
o2.inSampleSize=scale;
return BitmapFactory.decodeStream(is, null, o2);
}
このビットマップを画像ビューに設定していますが、上下にスペースが残っています。
私はこれを試しました:
img.setLayoutParams(new FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT,FrameLayout.LayoutParams.MATCH_PARENT));
img.setImageBitmap(bm);
しかし役に立たない。
他に方法はありますか?