7

サーバーに画像を送信しようとしています。送信する前に、サイズと品質を縮小し、回転の問題を修正しています。私の問題は、画像を回転させた後、保存すると、ファイルが以前よりも大きくなることです。ローテーション前のサイズは 10092、ローテーション後は 54226

// Scale image to reduce it
Bitmap reducedImage = reduceImage(tempPhotoPath);

// Decrease photo quality
FileOutputStream fos = new FileOutputStream(tempPhotoFile);
reducedImage.compress(CompressFormat.JPEG, 55, fos);
fos.flush();
fos.close();

// Check and fix rotation issues
Bitmap fixed = fixRotation(tempPhotoPath);
if(fixed!=null)
{
    FileOutputStream fos2 = new FileOutputStream(tempPhotoFile);
    fixed.compress(CompressFormat.JPEG, 100, fos2);
    fos2.flush();
    fos2.close();
}

public Bitmap reduceImage(String originalPath)
{
    // Decode image size
    BitmapFactory.Options o = new BitmapFactory.Options();
    o.inJustDecodeBounds = true;
    o.inPurgeable = true;
    o.inInputShareable = true;
    BitmapFactory.decodeFile(originalPath, o);

    // The new size we want to scale to
    final int REQUIRED_SIZE = 320;

    // Find the correct scale value. It should be the power of 2.
    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.inPurgeable = true;
    o2.inInputShareable = true;
    o2.inSampleSize = scale;
    Bitmap bitmapScaled = null;
    bitmapScaled = BitmapFactory.decodeFile(originalPath, o2);

    return bitmapScaled;
}

public Bitmap fixRotation(String path)
{
    Bitmap b = null;
    try
    {
        //Find if the picture is rotated
        ExifInterface exif = new ExifInterface(path);
        int degrees = 0;
        if(exif.getAttribute(ExifInterface.TAG_ORIENTATION).equalsIgnoreCase("6"))
            degrees = 90;
        else if(exif.getAttribute(ExifInterface.TAG_ORIENTATION).equalsIgnoreCase("8"))
            degrees = 270;
        else if(exif.getAttribute(ExifInterface.TAG_ORIENTATION).equalsIgnoreCase("3"))
            degrees = 180;

        if(degrees > 0)
        {
            BitmapFactory.Options o = new BitmapFactory.Options();
            o.inPurgeable = true;
            o.inInputShareable = true;
            Bitmap bitmap = BitmapFactory.decodeFile(path, o);

            int w = bitmap.getWidth();
            int h = bitmap.getHeight();

            Matrix mtx = new Matrix();
            mtx.postRotate(degrees);

            b = Bitmap.createBitmap(bitmap, 0, 0, w, h, mtx, true);
        }
    }
    catch(Exception e){e.printStackTrace();}

    return b;
}
4

1 に答える 1

4

さまざまな品質対策で圧縮しています。ローテーション後は品質 100 を使用しているため、品質 55 の前のファイルよりも大きなファイルになります。

画像を圧縮する場合、現在のファイル サイズ/品質は関係ありません。それは結果に実質的な影響を与えません。55 品質で圧縮した後に 100 品質で圧縮すると、単純な 55 品質圧縮と同じサイズのファイルにはなりません。100 品質圧縮のサイズのファイルが生成されます。これは、それが最後に行われるためです。


あなたの特定のコードについては、とにかく2回圧縮する理由がわかりません。回転時に OOM の問題を引き起こしたのは圧縮 (ファイル サイズ) ではなく、画像のサイズが原因である可能性が最も高いです。回転する前に画像を縮小すると、一時ファイルを保存する必要がなくなります。

実行する必要があるのは、 を実行してreduceImage()から、 でフォローアップすることだけfixRotation()です。パスの代わりに aを受け入れるように回転方法を修正してくださいBitmap。その間にファイルを保存する必要はありません。最後に、必要な品質で保存/圧縮します。

何らかの理由で一時ファイルが必要な場合は、最初の圧縮に PNG を使用してください。このようにロスレスであるため、最終的な画像を再圧縮するときに、低品質で JPG (ロッシー) を 2 回使用することはありません。

于 2013-03-04T17:17:26.513 に答える