このリンクに従って画像のサイズを変更しています。
画像サイズは3264x2448で、サンプルサイズを計算すると24になりますが、画像は90度回転しています(左)。
幅が高さよりも大きい場合に発生します。
私は立ち往生しています。解決できません。
I am using accroding to http://developer.android.com/training/displaying-bitmaps/load-bitmap.html
public static String getCompressedImagePath(String orgImagePath,
String storeImagePath) {
if (orgImagePath == null) {
return null;
}
Bitmap bitmap = decodeSampledBitmapFromResource(orgImagePath, 100, 100);
String absolutePath = "";
FileOutputStream fos = null;
try {
fos = new FileOutputStream(storeImagePath);
bitmap.compress(getCompressionFormatType(orgImagePath),
IMAGE_COMPRESS_FACTOR, fos);
fos.flush();
absolutePath = storeImagePath;
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (NullPointerException e) {
e.printStackTrace();
} finally {
try {
if (fos != null) {
fos.close();
fos = null;
}
} catch (Exception e) {
e.printStackTrace();
}
}
return absolutePath;
}
public static Bitmap decodeSampledBitmapFromResource(String orgImagePath,
int reqWidth, int reqHeight) {
final BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(orgImagePath, options);
options.inSampleSize = calculateInSampleSize(options, reqWidth,
reqHeight);
options.inJustDecodeBounds = false;
return BitmapFactory.decodeFile(orgImagePath, options);
}
public static int calculateInSampleSize(BitmapFactory.Options options,
int reqWidth, int reqHeight) {
final int height = options.outHeight;
final int width = options.outWidth;
int inSampleSize = 1;
if (height > reqHeight || width > reqWidth) {
if (width > height) {
inSampleSize = Math.round((float) height / (float) reqHeight);
} else {
inSampleSize = Math.round((float) width / (float) reqWidth);
}
}
return inSampleSize;
}
また、decodeSampledBitmapFromResourceメソッドがリンクからコピーされ、圧縮された画像がintoimageviewに設定されています。