スケーリングされたビットマップを作成したいのですが、不均衡な画像が表示されるようです。長方形にしたいのですが、正方形のように見えます。
私のコード:
Bitmap resizedBitmap = Bitmap.createScaledBitmap(myBitmap, 960, 960, false);
画像のMAXを960にしたいのですが、どうすればよいですか?幅をnull
に設定してもコンパイルされません。おそらく簡単ですが、頭を包むことはできません。ありがとう
既にメモリに元のビットマップがある場合、inJustDecodeBounds
、inSampleSize
などのプロセス全体を実行する必要はありません。使用する比率を把握し、それに応じてスケーリングするだけです。 。
final int maxSize = 960;
int outWidth;
int outHeight;
int inWidth = myBitmap.getWidth();
int inHeight = myBitmap.getHeight();
if(inWidth > inHeight){
outWidth = maxSize;
outHeight = (inHeight * maxSize) / inWidth;
} else {
outHeight = maxSize;
outWidth = (inWidth * maxSize) / inHeight;
}
Bitmap resizedBitmap = Bitmap.createScaledBitmap(myBitmap, outWidth, outHeight, false);
このイメージの唯一の用途がスケーリングされたバージョンである場合は、メモリ使用量を最小限に抑えるために、Tobielの答えを使用することをお勧めします。
width = 960
およびheight = 960
を設定しているため、画像は正方形です。
次のように、必要な画像のサイズを渡すメソッドを作成する必要があります。 http://developer.Android.com/training/displaying-bitmaps/load-bitmap.html
コードでは、これは次のようになります。
public static Bitmap lessResolution (String filePath, int width, int height) {
int reqHeight = height;
int reqWidth = width;
BitmapFactory.Options options = new BitmapFactory.Options();
// First decode with inJustDecodeBounds=true to check dimensions
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(filePath, options);
// Calculate inSampleSize
options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
// Decode bitmap with inSampleSize set
options.inJustDecodeBounds = false;
return BitmapFactory.decodeFile(filePath, options);
}
private 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) {
// Calculate ratios of height and width to requested height and width
final int heightRatio = Math.round((float) height / (float) reqHeight);
final int widthRatio = Math.round((float) width / (float) reqWidth);
// Choose the smallest ratio as inSampleSize value, this will guarantee
// a final image with both dimensions larger than or equal to the
// requested height and width.
inSampleSize = heightRatio < widthRatio ? heightRatio : widthRatio;
}
return inSampleSize;
}
bmpimg = Bitmap.createScaledBitmap(srcimg, 100, 50, true);