web-dev-qa-db-ja.com

AndroidのcreateScaledBitmapでスケーリングされたビットマップを作成する

スケーリングされたビットマップを作成したいのですが、不均衡な画像が表示されるようです。長方形にしたいのですが、正方形のように見えます。

私のコード:

Bitmap resizedBitmap = Bitmap.createScaledBitmap(myBitmap, 960, 960, false);

画像のMAXを960にしたいのですが、どうすればよいですか?幅をnullに設定してもコンパイルされません。おそらく簡単ですが、頭を包むことはできません。ありがとう

16
EGHDK

既にメモリに元のビットマップがある場合、inJustDecodeBoundsinSampleSizeなどのプロセス全体を実行する必要はありません。使用する比率を把握し、それに応じてスケーリングするだけです。 。

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の答えを使用することをお勧めします。

53
Geobits

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;
}
18
Tobiel
bmpimg = Bitmap.createScaledBitmap(srcimg, 100, 50, true);
2
user3243151