Android의 카메라 방향 문제


100

카메라를 사용하여 사진을 찍는 응용 프로그램을 만들고 있습니다. 이 작업을 수행하는 소스 코드는 다음과 같습니다.

        File file = new File(Environment.getExternalStorageDirectory(),
            imageFileName);
    imageFilePath = file.getPath();
    Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
    //Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(file));
    startActivityForResult(intent, ACTIVITY_NATIVE_CAMERA_AQUIRE);

onActivityResult()방법, 내가 사용하는 BitmapFactory.decodeStream()픽업에 이미지를.

Nexus one에서 애플리케이션을 실행하면 잘 실행됩니다. 그러나 Samsung Galaxy S 또는 HTC Inspire 4G에서 실행하면 이미지 방향이 올바르지 않습니다.

  • 세로 모드로 캡처하면 실제 이미지 (SD 카드에 저장)가 항상 90도 회전합니다.

촬영 후 이미지 미리보기 SD 카드의 실제 이미지

촬영 후 이미지 미리보기 --------- SD 카드의 실제 이미지

  • 가로 모드로 캡처하면 모든 것이 좋습니다.

촬영 후 이미지 미리보기 SD 카드의 실제 이미지

촬영 후 이미지 미리보기 --------- SD 카드의 실제 이미지


1
setRotation (90)은 Samsung Galaxy Nexus에서 작동했지만 Xperia S에서는 이미지를 회전하지 않았습니다.
StarDust 2013 년

누구든지 이것으로 나를 도울 수 있습니까? 내가 같은 문제가 stackoverflow.com/questions/28379130/...



답변:


50

여기에는 비슷한 주제와 문제가 많이 있습니다. 자신의 카메라를 작성하는 것이 아니기 때문에 다음과 같이 요약 할 수 있습니다.

일부 장치는 이미지를 저장하기 전에 회전하고 다른 장치는 단순히 사진의 exif 데이터에 방향 태그를 추가합니다.

사진의 exif 데이터를 확인하고 특히

ExifInterface exif = new ExifInterface(SourceFileName);     //Since API Level 5
String exifOrientation = exif.getAttribute(ExifInterface.TAG_ORIENTATION);

사진이 앱에서 올바르게 표시되기 때문에 문제가 어디에 있는지 확실하지 않지만 올바른 경로로 설정해야합니다!


33
이것은 일부 장치에서 작동하지 않는 것 같습니다. 모든 방향에 대해 0을 반환합니다 .. Galaxy S Infuse, Sony Xperia Arc 및 S II에서 발생한다는 것을 알고 있습니다. 여기서 흥미로운 점은 갤러리에서 동일한 이미지를 선택할 때 , 콘텐츠 제공자는 적절한 방향 값을 가지고 있습니다 .. 어떤 아이디어가 있습니까?
Tolga E 2011

3
@Abhijit 예 나는 이것을 해결하려고 노력했습니다 (안드로이드로 열린 티켓 등) 그리고 적절하고 잘못된 방향 정보로 두 전화기를 모두 처리하는 합리적인 해결책을 찾은 것 같습니다. 여기에서 내 질문에 게시 한 자세한 답변을 확인하십시오. stackoverflow.com/a/8864367/137404
Tolga E

1
@ramz 나는이 해결책을 찾으려고 시도했습니다. 그러나 모든 방향에 대해 0을 반환합니다. 모든 방향에 대해 0을 반환하는 이유를 알고 있습니까?
Dory

1
이 솔루션이 작동하지 않는 이유는 ExifInterface 생성자에서 사용되는 잘못된 "경로"때문입니다. 주로 KitKat에 있습니다. 올바른 경로를 얻는 방법은 여기를 참조하십시오. stackoverflow.com/a/20559175/690777
peter.bartos 2014

1
항상 ... 내 삼성 갤럭시 S4에 0 (ExifInterface.ORIENTATION_UNDEFINED)를 반환
valerybodak

28

방금 동일한 문제가 발생하여이를 사용하여 방향을 수정했습니다.

public void fixOrientation() {
    if (mBitmap.getWidth() > mBitmap.getHeight()) {
        Matrix matrix = new Matrix();
        matrix.postRotate(90);
        mBitmap = Bitmap.createBitmap(mBitmap , 0, 0, mBitmap.getWidth(), mBitmap.getHeight(), matrix, true);
    }
}

Bitmap의 너비가 높이보다 크면 반환 된 이미지가 가로 모드이므로 90도 회전합니다.

이 문제가있는 다른 사람에게 도움이되기를 바랍니다.


18
이미지가 실제로 풍경으로 촬영 된 경우 어떻게 됩니까? 코드는 계속 회전합니다. 이것은 질문에 대한 답이 아닙니다.
Wladimir Palant

1
내 응용 프로그램은 초상화를 강제하므로 문제가되지 않습니다. 여기에 문제에 대한 대안적인 해결책 만 포함 시켰습니다.

5
그러나 응용 프로그램이 세로로 강제하는 경우 여전히 가로 사진 (너비> 높이)을 찍을 수 있고 회전 할 것입니다 ... 최소한 모든 것에 대해 screenOrientation = "portrait"를 설정하고 있습니다 ... 카메라는 여전히 가로로 촬영할 수 있습니다. 사진.
Ixx


21

다음 두 가지가 필요합니다.

  1. 카메라 미리보기는 회전과 동일해야합니다. 이것을 설정camera.setDisplayOrientation(result);

  2. 캡처 한 사진을 카메라 미리보기로 저장합니다. 이를 통해 Camera.Parameters.

    int mRotation = getCameraDisplayOrientation();
    
    Camera.Parameters parameters = camera.getParameters();
    
    parameters.setRotation(mRotation); //set rotation to save the picture
    
    camera.setDisplayOrientation(result); //set the rotation for preview camera
    
    camera.setParameters(parameters);

도움이 되었기를 바랍니다.


이거 야! Camera.parameters는 중간 비트 맵에서의 렌더링을하지 않고 스냅 샷을 저장 정말 편리합니다
rupps

이것을 가장 쉬운 답변으로 표시하십시오! 이것은 일을한다! 이 쉬운 솔루션에 대한 매우 행복
카이 BURGHARDT

이 스 니펫을 그대로 사용하면 parameters.setRotation(result), 아니오 라고 말할 수 있습니다 .
Matt Logan

10
여기에서는 Camera 클래스를 직접 사용한다고 가정하고 ACTION_IMAGE_CAPTURE 인 텐트를 사용할 때 동일한 옵션을 지정할 수 없습니다.
옥상

1
결과와 getCameraDisplayOrientation ()은 무엇입니까?
venkat

10
            int rotate = 0;
            try {
                File imageFile = new File(sourcepath);
                ExifInterface exif = new ExifInterface(
                        imageFile.getAbsolutePath());
                int orientation = exif.getAttributeInt(
                        ExifInterface.TAG_ORIENTATION,
                        ExifInterface.ORIENTATION_NORMAL);

                switch (orientation) {
                case ExifInterface.ORIENTATION_ROTATE_270:
                    rotate = 270;
                    break;
                case ExifInterface.ORIENTATION_ROTATE_180:
                    rotate = 180;
                    break;
                case ExifInterface.ORIENTATION_ROTATE_90:
                    rotate = 90;
                    break;
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
            Matrix matrix = new Matrix();
    matrix.postRotate(rotate);
    bitmap = Bitmap.createBitmap(bitmap , 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);

코드가 무엇을하고 있는지, 다른 답변과 어떻게 다른지를 설명하는 것이 도움이 될 것입니다 (질문은 이미 꽤 오래되었고 다른 답변은 아마도 꽤 성숙 할 것입니다).
codeling 2014 년

7

또 다른 옵션은 다음과 같이 결과 화면에서 비트 맵을 회전하는 것입니다.

ImageView img=(ImageView)findViewById(R.id.ImageView01);
Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.refresh);
// Getting width & height of the given image.
int w = bmp.getWidth();
int h = bmp.getHeight();
// Setting post rotate to 90
Matrix mtx = new Matrix();
mtx.postRotate(90);
// Rotating Bitmap
Bitmap rotatedBMP = Bitmap.createBitmap(bmp, 0, 0, w, h, mtx, true);
BitmapDrawable bmd = new BitmapDrawable(rotatedBMP);

img.setImageDrawable(bmd);

30
이 접근 방식은 방향을 제대로 처리하는 장치의 이미지도 회전하므로 작동하지 않습니다.
hanspeide 2012 년


3

일부 장치에서도 이러한 유형의 동일한 문제가 있습니다.

private void rotateImage(final String path) {

    Bitmap scaledBitmap = Bitmap.createScaledBitmap(Conasants.bm1, 1000,
            700, true);
    Bitmap rotatedBitmap = null;
    try {
        ExifInterface ei = new ExifInterface(path);
        int orientation = ei.getAttributeInt(ExifInterface.TAG_ORIENTATION,
                ExifInterface.ORIENTATION_NORMAL);
        Matrix matrix = new Matrix();
        switch (orientation) {
        case ExifInterface.ORIENTATION_ROTATE_90:
            matrix.postRotate(90);
            rotatedBitmap = Bitmap.createBitmap(scaledBitmap, 0, 0,
                    scaledBitmap.getWidth(), scaledBitmap.getHeight(),
                    matrix, true);
            break;
        case ExifInterface.ORIENTATION_ROTATE_180:
            matrix.postRotate(180);
            rotatedBitmap = Bitmap.createBitmap(scaledBitmap, 0, 0,
                    scaledBitmap.getWidth(), scaledBitmap.getHeight(),
                    matrix, true);
            break;
        case ExifInterface.ORIENTATION_ROTATE_270:
            matrix.postRotate(270);
            rotatedBitmap = Bitmap.createBitmap(scaledBitmap, 0, 0,
                    scaledBitmap.getWidth(), scaledBitmap.getHeight(),
                    matrix, true);
            break;
        default:
            rotatedBitmap = Bitmap.createBitmap(scaledBitmap, 0, 0,
                    scaledBitmap.getWidth(), scaledBitmap.getHeight(),
                    matrix, true);
            break;
        }
    } catch (Throwable e) {
        e.printStackTrace();
    }
    cropImage.setImageBitmap(rotatedBitmap);
    rotatedBitmap = null;
    Conasants.bm1 = null;
}

1

이렇게 해보십시오 : static Uri image_uri; 정적 비트 맵 taken_image = null;

            image_uri=fileUri; // file where image has been saved

      taken_image=BitmapFactory.decodeFile(image_uri.getPath());
      try
        {
            ExifInterface exif = new ExifInterface(image_uri.getPath()); 

            int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);


            switch(orientation) {
                case ExifInterface.ORIENTATION_ROTATE_90:
                    taken_image=decodeScaledBitmapFromSdCard(image_uri.getPath(), 200, 200);
                    RotateBitmap(taken_image, 90);
                    break;
                case ExifInterface.ORIENTATION_ROTATE_180:
                    taken_image=decodeScaledBitmapFromSdCard(image_uri.getPath(), 200, 200);
                    RotateBitmap(taken_image, 180);

                    break;
                case ExifInterface.ORIENTATION_ROTATE_270:
                    taken_image=decodeScaledBitmapFromSdCard(image_uri.getPath(), 200, 200);
                    RotateBitmap(taken_image, 270);

                    break;
                case ExifInterface.ORIENTATION_NORMAL:
                    taken_image=decodeScaledBitmapFromSdCard(image_uri.getPath(), 200, 200);
                    RotateBitmap(taken_image, 0);

                    break;
            }

        }
        catch (OutOfMemoryError e)
        {
            Toast.makeText(getActivity(),e+"\"memory exception occured\"",Toast.LENGTH_LONG).show();


        }



public Bitmap RotateBitmap(Bitmap source, float angle) {
      Matrix matrix = new Matrix();
      matrix.postRotate(angle);

      round_Image = source;
      round_Image = Bitmap.createBitmap(source, 0, 0, source.getWidth(),   source.getHeight(), matrix, true);


  return Bitmap.createBitmap(source, 0, 0, source.getWidth(), source.getHeight(), matrix, true);

}


1

더 이상 사진의 exif 데이터를 확인하지 않아도됩니다. Glide로 쉽게 이동하십시오 .

Google은 Google 에서 권장하는 라이브러리로 Glide 라는 이름의 bumptech에서 개발 한 Android 용 이미지 로더 라이브러리를 소개 했습니다. 지금까지 Google I / O 2014 공식 애플리케이션을 포함하여 많은 Google 오픈 소스 프로젝트에서 사용되었습니다.

예 : Glide.with (context) .load (uri) .into (imageview);

추가 정보 : https://github.com/bumptech/glide


1
public void setCameraPicOrientation(){
        int rotate = 0;
        try {
            File imageFile = new File(mCurrentPhotoPath);
            ExifInterface exif = new ExifInterface(
                    imageFile.getAbsolutePath());
            int orientation = exif.getAttributeInt(
                    ExifInterface.TAG_ORIENTATION,
                    ExifInterface.ORIENTATION_NORMAL);

            switch (orientation) {
                case ExifInterface.ORIENTATION_ROTATE_270:
                    rotate = 270;
                    break;
                case ExifInterface.ORIENTATION_ROTATE_180:
                    rotate = 180;
                    break;
                case ExifInterface.ORIENTATION_ROTATE_90:
                    rotate = 90;
                    break;
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        Matrix matrix = new Matrix();
        matrix.postRotate(rotate);
        int targetW = 640;
        int targetH = 640;

        /* Get the size of the image */
        BitmapFactory.Options bmOptions = new BitmapFactory.Options();
        bmOptions.inJustDecodeBounds = true;
        BitmapFactory.decodeFile(mCurrentPhotoPath, bmOptions);
        int photoW = bmOptions.outWidth;
        int photoH = bmOptions.outHeight;

        /* Figure out which way needs to be reduced less */
        int scaleFactor = 1;
        if ((targetW > 0) || (targetH > 0)) {
            scaleFactor = Math.min(photoW/targetW, photoH/targetH);
        }

        /* Set bitmap options to scale the image decode target */
        bmOptions.inJustDecodeBounds = false;
        bmOptions.inSampleSize = scaleFactor;
        bmOptions.inPurgeable = true;

        /* Decode the JPEG file into a Bitmap */
        Bitmap bitmap = BitmapFactory.decodeFile(mCurrentPhotoPath, bmOptions);
        bitmap= Bitmap.createBitmap(bitmap , 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);
            /* Associate the Bitmap to the ImageView */
      imageView.setImageBitmap(bitmap);
    }

이것이 도움이되기를 바랍니다 !! 감사


0
    public static  int mOrientation =  1;

    OrientationEventListener myOrientationEventListener;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.takephoto);

        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);


        myOrientationEventListener
        = new OrientationEventListener(getApplicationContext()) {

            @Override
            public void onOrientationChanged(int o) {
                // TODO Auto-generated method stub
                if(!isTablet(getApplicationContext()))
                {
                    if(o<=285 && o>=80)
                        mOrientation = 2;
                    else
                        mOrientation = 1;
                }
                else
                {
                    if(o<=285 && o>=80)
                        mOrientation = 1;
                    else
                        mOrientation = 2;
                }

            }
        };

        myOrientationEventListener.enable();

    }



    public static boolean isTablet(Context context) {
        return (context.getResources().getConfiguration().screenLayout
                & Configuration.SCREENLAYOUT_SIZE_MASK)
                >= Configuration.SCREENLAYOUT_SIZE_LARGE;
    }

}

이것이 도움이되기를 바랍니다. 감사합니다!


0

여기서 동일한 문제가 발생하면 아래 코드 스 니펫이 작동합니다.

private static final String[] CONTENT_ORIENTATION = new String[] {
        MediaStore.Images.ImageColumns.ORIENTATION
};

static int getExifOrientation(ContentResolver contentResolver, Uri uri) {
    Cursor cursor = null;

    try {
        cursor = contentResolver.query(uri, CONTENT_ORIENTATION, null, null, null);
        if (cursor == null || !cursor.moveToFirst()) {
            return 0;
        }
        return cursor.getInt(0);
    } catch (RuntimeException ignored) {
        // If the orientation column doesn't exist, assume no rotation.
        return 0;
    } finally {
        if (cursor != null) {
            cursor.close();
        }
    }
}

이것이 도움이되기를 바랍니다 :)


0

surfaceChanged 콜백에서 이것을 시도하십시오.

Camera.Parameters parameters=mCamera.getParameters();
if(this.getResources().getConfiguration().orientation == ActivityInfo.SCREEN_ORIENTATION_PORTRAIT){
    parameters.setRotation(90);
}else{
    parameters.setRotation(0);
}
mCamera.setParameters(parameters);

0

// 버튼 클릭

btnCamera.setOnClickListener( new View.OnClickListener() {
        @Override
        public void onClick(View view) {

                try {
                    ContentValues values;
                    values = new ContentValues();
                    values.put(MediaStore.Images.Media.TITLE, "New Picture");
                    values.put(MediaStore.Images.Media.DESCRIPTION, "From your Camera");
                    imageUri = context.getContentResolver().insert(
                            MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
                    Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
                    intent.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);
                    startActivityForResult(intent, CAMERA_REQUEST);
                }catch (Exception e){}

            });

// onActivityResult 메서드

   if (requestCode==CAMERA_REQUEST){
        try {
            if (imageUri!=null) {
                path = String.valueOf(new File(FilePath.getPath(context, imageUri)));
                   }  
        }catch (Exception e){
            toast("please try again "+e.getMessage());
            Log.e("image error",e.getMessage());
        }
    }

// 클래스 파일 경로 생성

공용 클래스 FilePath {

public static String getPath(final Context context, final Uri uri) {

    // check here to KITKAT or new version
    final boolean isKitKat = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT;

    // DocumentProvider
    if (isKitKat && DocumentsContract.isDocumentUri(context, uri)) {

        // ExternalStorageProvider
        if (isExternalStorageDocument(uri)) {
            final String docId = DocumentsContract.getDocumentId(uri);
            final String[] split = docId.split(":");
            final String type = split[0];

            if ("primary".equalsIgnoreCase(type)) {
                return Environment.getExternalStorageDirectory() + "/"
                        + split[1];
            }
        }
        // DownloadsProvider
        else if (isDownloadsDocument(uri)) {

            final String id = DocumentsContract.getDocumentId(uri);
            final Uri contentUri = ContentUris.withAppendedId(
                    Uri.parse("content://downloads/public_downloads"),
                    Long.valueOf(id));

            return getDataColumn(context, contentUri, null, null);
        }
        // MediaProvider
        else if (isMediaDocument(uri)) {
            final String docId = DocumentsContract.getDocumentId(uri);
            final String[] split = docId.split(":");
            final String type = split[0];

            Uri contentUri = null;
            if ("image".equals(type)) {
                contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;
            } else if ("video".equals(type)) {
                contentUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI;
            } else if ("audio".equals(type)) {
                contentUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
            }

            final String selection = "_id=?";
            final String[] selectionArgs = new String[] { split[1] };

            return getDataColumn(context, contentUri, selection,
                    selectionArgs);
        }
    }
    // MediaStore (and general)
    else if ("content".equalsIgnoreCase(uri.getScheme())) {

        // Return the remote address
        if (isGooglePhotosUri(uri))
            return uri.getLastPathSegment();

        return getDataColumn(context, uri, null, null);
    }
    // File
    else if ("file".equalsIgnoreCase(uri.getScheme())) {
        return uri.getPath();
    }

    return null;
}

/**
 * Get the value of the data column for this Uri. This is useful for
 * MediaStore Uris, and other file-based ContentProviders.
 *
 * @param context
 *            The context.
 * @param uri
 *            The Uri to query.
 * @param selection
 *            (Optional) Filter used in the query.
 * @param selectionArgs
 *            (Optional) Selection arguments used in the query.
 * @return The value of the _data column, which is typically a file path.
 */
public static String getDataColumn(Context context, Uri uri,
                                   String selection, String[] selectionArgs) {

    Cursor cursor = null;
    final String column = "_data";
    final String[] projection = { column };

    try {
        cursor = context.getContentResolver().query(uri, projection,
                selection, selectionArgs, null);
        if (cursor != null && cursor.moveToFirst()) {
            final int index = cursor.getColumnIndexOrThrow(column);
            return cursor.getString(index);
        }
    } finally {
        if (cursor != null)
            cursor.close();
    }
    return null;
}

/**
 * @param uri
 *            The Uri to check.
 * @return Whether the Uri authority is ExternalStorageProvider.
 */
public static boolean isExternalStorageDocument(Uri uri) {
    return "com.android.externalstorage.documents".equals(uri
            .getAuthority());
}

/**
 * @param uri
 *            The Uri to check.
 * @return Whether the Uri authority is DownloadsProvider.
 */
public static boolean isDownloadsDocument(Uri uri) {
    return "com.android.providers.downloads.documents".equals(uri
            .getAuthority());
}

/**
 * @param uri
 *            The Uri to check.
 * @return Whether the Uri authority is MediaProvider.
 */
public static boolean isMediaDocument(Uri uri) {
    return "com.android.providers.media.documents".equals(uri
            .getAuthority());
}

/**
 * @param uri
 *            The Uri to check.
 * @return Whether the Uri authority is Google Photos.
 */
public static boolean isGooglePhotosUri(Uri uri) {
    return "com.google.android.apps.photos.content".equals(uri
            .getAuthority());
}

}


-1

코드는 기능적으로 가로 및 세로 @frontCameraID = 변수가 원하는 카메라 표시를위한 고전적인 방법을 얻었습니다.

@Override
public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {

    if(holder.getSurface() == null) {
        return;
    }
    try{
        camera.stopPreview();
    } catch (Exception e){
    }

    try{

        int orientation = getDisplayOrientation(frontCameraID);

        Camera.Parameters parameters = camera.getParameters();
        parameters.setPreviewSize(mPreviewSize.width, mPreviewSize.height);
        if (parameters.getSupportedFocusModes().contains(Camera.Parameters.FOCUS_MODE_CONTINUOUS_PICTURE)) {
            parameters.setFocusMode(Camera.Parameters.FOCUS_MODE_CONTINUOUS_PICTURE);
        }

        parameters.setRotation(rotationPicture);
        camera.setParameters(parameters);
        camera.setDisplayOrientation(orientation);
        camera.startPreview();

    } catch (Exception e) {
        Log.i("ERROR", "Camera error changed: " + e.getMessage());
    }
}

사진을 저장하고 방향을 표시하기 위해 방향을 가져 오는 방법 y 회전 @result = 카메라 미리보기보기의 방향 @rotationPicture = 사진을 올바르게 저장하는 데 필요한 회전

private int getDisplayOrientation(int cameraId) {

    android.hardware.Camera.CameraInfo info = new android.hardware.Camera.CameraInfo();
    android.hardware.Camera.getCameraInfo(cameraId, info);
    int rotation = ((Activity) context).getWindowManager().getDefaultDisplay().getRotation();
    int degrees = 0;
    switch (rotation) {
        case Surface.ROTATION_0: degrees = 0; break;
        case Surface.ROTATION_90: degrees = 90; break;
        case Surface.ROTATION_180: degrees = 180; break;
        case Surface.ROTATION_270: degrees = 270; break;
    }

    int result;
    if (info.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) {
        result = (info.orientation + degrees) % 360;
        result = (360 - result) % 360;
        rotationPicture = (360 - result) % 360;
    } else {
        result = (info.orientation - degrees + 360) % 360;
        rotationPicture = result;
    }

    return result;
}

코드에 대한 질문이 있으시면 알려주세요.


-2

Picasso 및 글라이드 라이브러리를 사용하는 두 개의 한 줄 솔루션

이미지 회전 문제에 대한 많은 솔루션에 많은 시간을 보낸 후 마침내 두 가지 간단한 솔루션을 찾았습니다. 추가 작업을 할 필요가 없습니다. Picasso 및 Glide는 앱 포함에서 이미지를 처리하기위한 매우 강력한 라이브러리입니다. 이미지 EXIF ​​데이터를 읽고 이미지를 자동으로 회전합니다.

글라이드 라이브러리 https://github.com/bumptech/glide 사용

Glide.with(this).load("http url or sdcard url").into(imgageView);

Picasso 라이브러리 사용 https://github.com/square/picasso

Picasso.with(context).load("http url or sdcard url").into(imageView);

SO에 오신 것을 환영합니다. upvotes 요구 사양 해주십시오 : meta.stackexchange.com/questions/194061/...은
JANS
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.