3
float rotation =getRotatedImage(imgdata);

// imgdataは、メソッドgetRotatedImage(imgdata)で必要な文字列です。

//画像のオリエンテーションを取得するための私自身の方法

private float getRotatedImage(String imgdata2) {
         try {
            ExifInterface exif = new ExifInterface(imgdata2);
            int rotation = (int)exifOrientationToDegrees(
                    exif.getAttributeInt(ExifInterface.TAG_ORIENTATION,
                            ExifInterface.ORIENTATION_NORMAL));
            return rotation;
        } catch (IOException e) {
            Log.e("CAMERA IMAGE", "Error checking exif", e);
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        // TODO Auto-generated method stub
        return 0f;
    }

//撮影した写真の内部バイトデータを文字列に変換しています

@Override
    public void onPictureTaken(byte[] arg0, Camera arg1) {
        Log.i("CAMERA", "ON PICTURE TAKEN");
        int length = arg0.length;
        if (length != 0) {

            //bitimage = BitmapFactory.decodeByteArray(arg0, 0, arg0.length);

            finalimage = arg0;
            if(finalimage!=null)
            {
                imgdata=converttostring(finalimage);
            }
            //compressimageforshow();
            Toast.makeText(getApplicationContext(), "IMAGE PROCESSING DONE", 0)
                    .show();

        } else {
            Toast.makeText(getApplicationContext(), "NO IMAGE ", 0).show();
        }
        arg1.startPreview();
        //shutterButton.setEnabled(false);
        show_image_bt.setEnabled(true);

    }

//ここに文字列に変換するための私のメソッドがあります

private String converttostring(byte[] finalimage2) {
        // String basestr=Base64.encodeToString(finalimage2, Base64.NO_WRAP);

        return new String(finalimage2);

    }

//これが私のlogcat例外の詳細です:

01-22 18:06:48.808: I/ACTIVITY(344): ON CREATE
01-22 18:06:48.808: I/ACTIVITY(344): ON RESUME
01-22 18:06:49.348: I/CAMERA(344): ON SURFACE CHANGE
01-22 18:06:53.018: I/CAMERA(344): ON PICTURE TAKEN
01-22 18:06:56.188: E/(344): can't open '������JFIF����`��`��������fExif����II*������������������>��������������F������(��������������1��������N��������������`������������`������������Paint.NET v3.36������C��
01-22 18:06:56.188: E/(344): 
01-22 18:06:56.188: E/(344): 
01-22 18:06:56.188: E/(344): 

����C       

�������@"�������������������������� 
01-22 18:06:56.188: E/(344): �����������}��!1AQa"q2���#B��R��$3br�  
01-22 18:06:56.188: E/(344): %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�������������������������������������������������������������������������������������������   
01-22 18:06:56.188: E/(344): ���������w��!1AQaq"2�B���� #3R�br�
01-22 18:06:56.188: E/(344): $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������

//AndroidクラスのBase64も試してみました

imgdata=Base64.encodeToString(finalimage,Base64.NO_WRAP);

ここで、imgdataは文字列、finalimageはバイト配列です。

返信をお待ちしております。私の言語とコーディングスタイルについてはご容赦ください。

//ここでは、例外が生成されているボタンクリックイベントについて言及しています

@Override
    public void onClick(View arg0) {
        switch (arg0.getId()) {
case R.id.show_image:
            show_image_imgvw.setVisibility(View.VISIBLE);
            retake_photo_bt.setEnabled(true);
            show_image_bt.setEnabled(false);
            preview.setVisibility(View.INVISIBLE);

            if (finalimage != null) {
                resizeimageforshow();
                show_image_imgvw.setImageBitmap(bitimage);
                Toast.makeText(getApplicationContext(), "IMAGE DISPLAYED", 0)
                        .show();

このボタンをクリックすると、例外が生成されます。// getRotatedimage()を呼び出してresizeimagefroshow()内に配置し、その後、表示用の新しいビットマップ画像を作成します

//ここにコードを記述します:

private void resizeimageforshow() {
        if (finalimage != null) {
            // bitimage=BitmapFactory.decodeByteArray(finalimage, 0,
            // finalimage.length);
            // show_image_imgvw.setImageBitmap(bitimage);
            Bitmap myimage1 = BitmapFactory.decodeByteArray(finalimage, 0,
                    finalimage.length);
            // imgdata=Base64.encodeToString(finalimage,Base64.NO_WRAP);
            android.graphics.Matrix matrix = new android.graphics.Matrix();
            float rotation = getRotatedImage(imgdata);
            if (rotation != 0f) {
                matrix.preRotate(rotation);
            }
            bitimage = Bitmap.createBitmap(myimage1, 0, 0, myimage1.getWidth(),
                    myimage1.getHeight(), matrix, true);
4

1 に答える 1

0

@njzk2が述べたように、バイナリ画像データを文字列に変換しても意味がありません。必要なのは、ExifInterfaceコンストラクターに渡すファイル名文字列です。

したがって、最初に画像データをファイルに保存する必要があります。

File file = new File(getExternalCacheDir(), "camera_picture.jpg");
OutputStream os = new FileOutputStream(file.toString());
try {
    os.write(finalimage);
} finally {
    os.close();
}

ExifInterfaceその後、で使用できますfilename

ストリームから直接メタデータを読み取りたい場合は、サード パーティのライブラリを使用する必要があります。画像コールバックからの Android jpeg EXIF メタデータの読み取りを参照してください。

于 2013-01-22T16:09:06.807 に答える