0

画像拡張子.jpg.JPG. 次のコードで .JPG 画像を開くことができないという問題が発生しました。

public static Bitmap decodeSampledBitmapFromResource(String path,
            int reqWidth, int reqHeight) {
        Log.e("PATH", path);
        // First decode with inJustDecodeBounds=true to check dimensions
        final BitmapFactory.Options options = new BitmapFactory.Options();
        options.inJustDecodeBounds = true;

        // Calculate inSampleSizeа
        options.inSampleSize = calculateInSampleSize(options, reqWidth,
                reqHeight);

        // Decode bitmap with inSampleSize set
        options.inJustDecodeBounds = false;
        Bitmap b = BitmapFactory.decodeFile(path, options);
        if(b!=null){
            Log.d("bitmap","decoded sucsessfully");
        }else{

            Log.d("bitmap","decoding failed; options: "+options.toString());
        }
        return b;
    }
public static int calculateInSampleSize(BitmapFactory.Options options,
            int reqWidth, int reqHeight) {
        // Raw height and width of image
        final int height = options.outHeight;
        final int width = options.outWidth;
        int inSampleSize = 1;
        Log.d("bitmap", "original options: height "+ height + " widnth "+width+" inSampleSize "+inSampleSize);

        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;
            Log.d("bitmap", "options: height "+ height + " widnth "+width+" inSampleSize "+inSampleSize);
        }

        return inSampleSize;
    }

私が電話したら

decodeSampledBitmapFromResource(path, 80, 60)

*.JPG 画像では、返されるビットマップは null です。それらが一般的に異なる方法で実装されているのか、それともGalaxy S3に固有のものなのかを尋ねていますか? (Galaxy Tab 7.7 や HTC フォンでは再現できませんでした。)

4

1 に答える 1

1

Android は、大文字と小文字が区別される Linux オペレーティング システムで実行されます。

ファイルの拡張子が「.jpg」のように小文字の場合は、ソース コードで参照する必要があります。ファイルの拡張子が「.JPG」の場合も同様にコードで記述します。

于 2013-08-09T09:26:37.157 に答える