एंड्रॉइड पर कुछ उपकरणों पर कैमरा आशय का उपयोग करके कैप्चर की गई छवि को क्यों घुमाया जाता है?


376

मैं एक छवि कैप्चर कर रहा हूं और इसे छवि दृश्य पर सेट कर रहा हूं।

public void captureImage() {

    Intent intentCamera = new Intent("android.media.action.IMAGE_CAPTURE");
    File filePhoto = new File(Environment.getExternalStorageDirectory(), "Pic.jpg");
    imageUri = Uri.fromFile(filePhoto);
    MyApplicationGlobal.imageUri = imageUri.getPath();
    intentCamera.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);
    startActivityForResult(intentCamera, TAKE_PICTURE);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent intentFromCamera) {
    super.onActivityResult(requestCode, resultCode, intentFromCamera);

    if (resultCode == RESULT_OK && requestCode == TAKE_PICTURE) {

        if (intentFromCamera != null) {
            Bundle extras = intentFromCamera.getExtras();
            if (extras.containsKey("data")) {
                bitmap = (Bitmap) extras.get("data");
            }
            else {
                bitmap = getBitmapFromUri();
            }
        }
        else {
            bitmap = getBitmapFromUri();
        }
        // imageView.setImageBitmap(bitmap);
        imageView.setImageURI(imageUri);
    }
    else {
    }
}

public Bitmap getBitmapFromUri() {

    getContentResolver().notifyChange(imageUri, null);
    ContentResolver cr = getContentResolver();
    Bitmap bitmap;

    try {
        bitmap = android.provider.MediaStore.Images.Media.getBitmap(cr, imageUri);
        return bitmap;
    }
    catch (Exception e) {
        e.printStackTrace();
        return null;
    }
}

लेकिन समस्या यह है कि हर बार घूमने पर कुछ उपकरणों पर छवि। उदाहरण के लिए, सैमसंग डिवाइस पर यह अच्छा काम करता है, लेकिन सोनी एक्सपीरिया पर छवि को 90 डिग्री और तोशिबा थ्राइव (टैबलेट) पर 180 डिग्री तक घुमाया जाता है ।


1
इस गतिविधि को आप मेनिफ़ेस्ट Android में आज़माएँ: configChanges = "ओरिएंटेशन" android: screenOrientation = "पोर्ट्रेट"
पाल

@ यह काम नहीं करता है, अब छवि टैब पर 180 डिग्री के बजाय 90 डिग्री तक घूम जाती है
शिरीष हेरवाडे

1
जैसा कि मुझे लगता है कि जब आप कैमरा ऐप से निपटने के लिए आंतरिक इरादे का उपयोग करते हैं, तो यह छवि को घुमा देता है। यह इस बात पर निर्भर करता है कि आप डिवाइस को छवि को पकड़ने के लिए कैसे पकड़ते हैं। तो आप उपयोगकर्ता को विशेष रूप से छवि लेने के लिए प्रतिबंधित कर सकते हैं इसका मतलब है कि उपयोगकर्ता हमेशा चित्र या परिदृश्य में डिवाइस को पकड़कर छवि को कैप्चर करेगा। उसके बाद आप इसे अपनी इच्छानुसार छवि प्राप्त करने के लिए विशिष्ट कोण में बदल सकते हैं .. या अन्य विकल्प, अपना स्वयं का कैमरा बनाएं।
नरेंद्र पाल

@nick "आप उपयोगकर्ता को विशेष तरीके से छवि लेने के लिए प्रतिबंधित कर सकते हैं" इसका मतलब है कि यह अभिविन्यास = "पॉटरेट" सेट करने के समान है? और कैसे "उसके बाद आप छवि प्राप्त करने के लिए इसे विशिष्ट कोण में बदल सकते हैं जैसा कि आप चाहते हैं" हासिल? कृपया आप कुछ उपयोगी लिंक दे सकते हैं
शिरीष हर्वाडे

3
मेरा मानना ​​है कि कैप्चर का इरादा हमेशा डिफ़ॉल्ट कैमरा ऐप लाता है जिसमें प्रत्येक डिवाइस पर विशिष्ट अभिविन्यास होता है और परिणामस्वरूप - निश्चित फोटो ओरिएंटेशन। यह उस तरीके पर निर्भर नहीं करता है जब उपयोगकर्ता डिवाइस को पकड़ता है या आपकी गतिविधि का उन्मुखीकरण जो इरादे को लागू करता है।
एलेक्स कोहेन

जवाबों:


440

अधिकांश फोन कैमरे परिदृश्य हैं, जिसका अर्थ है कि यदि आप चित्र में फोटो लेते हैं, तो परिणामस्वरूप तस्वीरें 90 डिग्री घुमाई जाएंगी। इस मामले में, कैमरा सॉफ्टवेयर को एक्सिफ़ डेटा को उस अभिविन्यास के साथ पॉप्युलेट करना चाहिए जिसे फ़ोटो में देखा जाना चाहिए।

ध्यान दें कि नीचे दिए गए समाधान कैमरा सॉफ्टवेयर / उपकरण निर्माता पर निर्भर करता है जो Exif डेटा को पॉप्युलेट करता है, इसलिए यह ज्यादातर मामलों में काम करेगा, लेकिन यह 100% विश्वसनीय समाधान नहीं है।

ExifInterface ei = new ExifInterface(photoPath);
int orientation = ei.getAttributeInt(ExifInterface.TAG_ORIENTATION,
                                     ExifInterface.ORIENTATION_UNDEFINED);

Bitmap rotatedBitmap = null;
switch(orientation) {

    case ExifInterface.ORIENTATION_ROTATE_90:
        rotatedBitmap = rotateImage(bitmap, 90);
        break;

    case ExifInterface.ORIENTATION_ROTATE_180:
        rotatedBitmap = rotateImage(bitmap, 180);
        break;

    case ExifInterface.ORIENTATION_ROTATE_270:
        rotatedBitmap = rotateImage(bitmap, 270);
        break;

    case ExifInterface.ORIENTATION_NORMAL:
    default:
        rotatedBitmap = bitmap;
}

यहाँ rotateImageविधि है:

public static Bitmap rotateImage(Bitmap source, float angle) {
    Matrix matrix = new Matrix();
    matrix.postRotate(angle);
    return Bitmap.createBitmap(source, 0, 0, source.getWidth(), source.getHeight(),
                               matrix, true);
}

1
@JasonRobinson कोड से मैं सीखता हूं कि वास्तविक अभिविन्यास कैसे प्राप्त करें और इन कोड के साथ संयोजन करके मैं सफलतापूर्वक उन्मुखीकरण का प्रबंधन करता हूं।
रादित्य कुर्नाटिओ

दूसरे पैरामीटर का exif.getAttributeIntउपयोग करने का दूसरा विकल्प ExifInterface.ORIENTATION_UNDEFINEDलगभग समान है, क्योंकि फ़ंक्शन मान प्रदान करने में विफल होने पर दूसरा पैरामीटर डिफ़ॉल्ट मान है।
डारपैन

5
यह कोड डिस्क में पहले से लिखी गई छवि के लिए है, है ना? मुझे बिटमैप के लिए इस विधि का उपयोग करने के लिए कोई परिणाम नहीं मिला है, जिसे डिस्क पर लिखा जाना है।
थ्रेशियन

4
यह हमेशा मुझे 0 मान लौटाता है। कृपया बताएं कि वास्तविक अभिविन्यास कैसे प्राप्त करें।
अनुराग श्रीवास्तव

3
0 हमेशा हो रही है, किसी भी विचार क्यों?
नवमी रमजान

186

संयोजन से जेसन रॉबिन्सन के जवाब के साथ फेलिक्स s ' जवाब और लापता भागों भरने, यहां इस समस्या के अंतिम पूर्ण समाधान है कि Android पर परीक्षण के बाद निम्नलिखित करना होगा एंड्रॉयड 4.1 ( जेली बीन ), एंड्रॉयड 4.4 ( किटकैट ) और Android 5.0 ( लॉलीपॉप )।

कदम

  1. यदि यह 1024x1024 से बड़ा है, तो छवि को स्केल करें।

  2. छवि को सही अभिविन्यास में घुमाएं केवल अगर यह 90, 180 या 270 डिग्री पर घुमाया गया हो।

  3. स्मृति उद्देश्यों के लिए घुमाए गए छवि को रीसायकल करें।

यहाँ कोड हिस्सा है:

वर्तमान Contextऔर छवि के साथ निम्न विधि को कॉल करें URIजिसे आप ठीक करना चाहते हैं

/**
 * This method is responsible for solving the rotation issue if exist. Also scale the images to
 * 1024x1024 resolution
 *
 * @param context       The current context
 * @param selectedImage The Image URI
 * @return Bitmap image results
 * @throws IOException
 */
public static Bitmap handleSamplingAndRotationBitmap(Context context, Uri selectedImage)
        throws IOException {
    int MAX_HEIGHT = 1024;
    int MAX_WIDTH = 1024;

    // First decode with inJustDecodeBounds=true to check dimensions
    final BitmapFactory.Options options = new BitmapFactory.Options();
    options.inJustDecodeBounds = true;
    InputStream imageStream = context.getContentResolver().openInputStream(selectedImage);
    BitmapFactory.decodeStream(imageStream, null, options);
    imageStream.close();

    // Calculate inSampleSize
    options.inSampleSize = calculateInSampleSize(options, MAX_WIDTH, MAX_HEIGHT);

    // Decode bitmap with inSampleSize set
    options.inJustDecodeBounds = false;
    imageStream = context.getContentResolver().openInputStream(selectedImage);
    Bitmap img = BitmapFactory.decodeStream(imageStream, null, options);

    img = rotateImageIfRequired(context, img, selectedImage);
    return img;
}

यहाँ CalculateInSampleSizeपूर्व वर्णित स्रोत से विधि है :

/**
  * Calculate an inSampleSize for use in a {@link BitmapFactory.Options} object when decoding
  * bitmaps using the decode* methods from {@link BitmapFactory}. This implementation calculates
  * the closest inSampleSize that will result in the final decoded bitmap having a width and
  * height equal to or larger than the requested width and height. This implementation does not
  * ensure a power of 2 is returned for inSampleSize which can be faster when decoding but
  * results in a larger bitmap which isn't as useful for caching purposes.
  *
  * @param options   An options object with out* params already populated (run through a decode*
  *                  method with inJustDecodeBounds==true
  * @param reqWidth  The requested width of the resulting bitmap
  * @param reqHeight The requested height of the resulting bitmap
  * @return The value to be used for inSampleSize
  */
private 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;

    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;

        // This offers some additional logic in case the image has a strange
        // aspect ratio. For example, a panorama may have a much larger
        // width than height. In these cases the total pixels might still
        // end up being too large to fit comfortably in memory, so we should
        // be more aggressive with sample down the image (=larger inSampleSize).

        final float totalPixels = width * height;

        // Anything more than 2x the requested pixels we'll sample down further
        final float totalReqPixelsCap = reqWidth * reqHeight * 2;

        while (totalPixels / (inSampleSize * inSampleSize) > totalReqPixelsCap) {
            inSampleSize++;
        }
    }
    return inSampleSize;
}

फिर वह विधि आती है जो रोटेशन के कोण को तय करने के लिए वर्तमान छवि अभिविन्यास की जांच करेगी

 /**
 * Rotate an image if required.
 *
 * @param img           The image bitmap
 * @param selectedImage Image URI
 * @return The resulted Bitmap after manipulation
 */
private static Bitmap rotateImageIfRequired(Context context, Bitmap img, Uri selectedImage) throws IOException {

InputStream input = context.getContentResolver().openInputStream(selectedImage);
ExifInterface ei;
if (Build.VERSION.SDK_INT > 23)
    ei = new ExifInterface(input);
else
    ei = new ExifInterface(selectedImage.getPath());

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

    switch (orientation) {
        case ExifInterface.ORIENTATION_ROTATE_90:
            return rotateImage(img, 90);
        case ExifInterface.ORIENTATION_ROTATE_180:
            return rotateImage(img, 180);
        case ExifInterface.ORIENTATION_ROTATE_270:
            return rotateImage(img, 270);
        default:
            return img;
    }
}

अंत में रोटेशन विधि ही

private static Bitmap rotateImage(Bitmap img, int degree) {
    Matrix matrix = new Matrix();
    matrix.postRotate(degree);
    Bitmap rotatedImg = Bitmap.createBitmap(img, 0, 0, img.getWidth(), img.getHeight(), matrix, true);
    img.recycle();
    return rotatedImg;
}

-अपने प्रयासों के लिए उन लोगों के जवाब और शिरीष हेरवाडे के लिए वोट करना न भूलें जिन्होंने यह मददगार सवाल पूछा।


2
मेरे लिए इसका वॉकिंग बिल्कुल सही है।
धन्यवाद

1
विधि बारी बारी से IIRRequired () बहुत अच्छी तरह से काम करता है .. धन्यवाद !!
मेक्टो

5
मेरे लिए काम नहीं करता है। कभी-कभी मेरा फोन पोर्ट्रेट देता है, कभी-कभी लैंडस्केप तस्वीरें, लेकिन पता चला ओरिएंटेशन हमेशा 0 डिग्री है।
माकलेले

@Makalele क्या व्हाट्सएप के माध्यम से फोटो लेने और संलग्न करने के दौरान भी यह समस्या है?
मनोज पेरुमारथ

मैं व्हाट्सएप का उपयोग नहीं करता, इसलिए मैं नहीं कह सकता, लेकिन सबसे शायद हां। ऐसा इसलिए है क्योंकि यह स्टॉक फोटो ऐप (Google स्टॉक कैमरा) में भी होता है।
मकाले

45

इमेज ओरिएंटेशन का पता लगाना आसान है और बिटमैप को इस्तेमाल करके बदल सकते हैं:

 /**
 * Rotate an image if required.
 * @param img
 * @param selectedImage
 * @return
 */
private static Bitmap rotateImageIfRequired(Context context,Bitmap img, Uri selectedImage) {

    // Detect rotation
    int rotation = getRotation(context, selectedImage);
    if (rotation != 0) {
        Matrix matrix = new Matrix();
        matrix.postRotate(rotation);
        Bitmap rotatedImg = Bitmap.createBitmap(img, 0, 0, img.getWidth(), img.getHeight(), matrix, true);
        img.recycle();
        return rotatedImg;
    }
    else{
        return img;
    }
}

/**
 * Get the rotation of the last image added.
 * @param context
 * @param selectedImage
 * @return
 */
private static int getRotation(Context context,Uri selectedImage) {

    int rotation = 0;
    ContentResolver content = context.getContentResolver();

    Cursor mediaCursor = content.query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
                                       new String[] { "orientation", "date_added" },
                                       null, null, "date_added desc");

    if (mediaCursor != null && mediaCursor.getCount() != 0) {
        while(mediaCursor.moveToNext()){
            rotation = mediaCursor.getInt(0);
            break;
        }
    }
    mediaCursor.close();
    return rotation;
}

बड़ी छवियों के साथ यादों से बचने के लिए, मैं आपको छवि का उपयोग करने की सलाह दूंगा:

private static final int MAX_HEIGHT = 1024;
private static final int MAX_WIDTH = 1024;
public static Bitmap decodeSampledBitmap(Context context, Uri selectedImage)
    throws IOException {

    // First decode with inJustDecodeBounds=true to check dimensions
    final BitmapFactory.Options options = new BitmapFactory.Options();
    options.inJustDecodeBounds = true;
    InputStream imageStream = context.getContentResolver().openInputStream(selectedImage);
    BitmapFactory.decodeStream(imageStream, null, options);
    imageStream.close();

    // Calculate inSampleSize
    options.inSampleSize = calculateInSampleSize(options, MAX_WIDTH, MAX_HEIGHT);

    // Decode bitmap with inSampleSize set
    options.inJustDecodeBounds = false;
    imageStream = context.getContentResolver().openInputStream(selectedImage);
    Bitmap img = BitmapFactory.decodeStream(imageStream, null, options);

    img = rotateImageIfRequired(img, selectedImage);
    return img;
}

यह एक Android ओएस मुद्दा क्योंकि अभिविन्यास पाने के लिए ExifInterface का उपयोग करने के लिए सकारात्मक नहीं है: https://code.google.com/p/android/issues/detail?id=19268

और यहाँ है calculateInSampleSize

/**
 * Calculate an inSampleSize for use in a {@link BitmapFactory.Options} object when decoding
 * bitmaps using the decode* methods from {@link BitmapFactory}. This implementation calculates
 * the closest inSampleSize that will result in the final decoded bitmap having a width and
 * height equal to or larger than the requested width and height. This implementation does not
 * ensure a power of 2 is returned for inSampleSize which can be faster when decoding but
 * results in a larger bitmap which isn't as useful for caching purposes.
 *
 * @param options   An options object with out* params already populated (run through a decode*
 *                  method with inJustDecodeBounds==true
 * @param reqWidth  The requested width of the resulting bitmap
 * @param reqHeight The requested height of the resulting bitmap
 * @return The value to be used for inSampleSize
 */
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;

    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;

        // This offers some additional logic in case the image has a strange
        // aspect ratio. For example, a panorama may have a much larger
        // width than height. In these cases the total pixels might still
        // end up being too large to fit comfortably in memory, so we should
        // be more aggressive with sample down the image (=larger inSampleSize).

        final float totalPixels = width * height;

        // Anything more than 2x the requested pixels we'll sample down further
        final float totalReqPixelsCap = reqWidth * reqHeight * 2;

        while (totalPixels / (inSampleSize * inSampleSize) > totalReqPixelsCap) {
            inSampleSize++;
        }
    }
    return inSampleSize;
}

1
गणना क्या है।
नमूना

1
@madhukotagiri यहां आपके पास गणन के लिए कार्यान्वयन का एक उदाहरण है। नमूना देखें
फेलिक्स

धन्यवाद आदमी, तुम निश्चित रूप से एक हो! मैं सोच रहा हूं कि यदि कभी-कभी ऑपरेशन किया जाता है, तो आकार कितना उपयोगी होगा।
मैरिनो

4
Uri selectImage पैरामीटर का उपयोग getRotation (...) विधि में नहीं किया गया है। हमें इसका उपयोग कैसे करना चाहिए? धन्यवाद।
वैलरीबोडक

1
पैरामीटर 'selectImage' का कहीं भी उपयोग नहीं किया जाता है। वहाँ होने का कोई कारण?
एलेक्स

20

एक पंक्ति समाधान:

Picasso.with(context).load("http://i.imgur.com/DvpvklR.png").into(imageView);

या

Picasso.with(context).load("file:" + photoPath).into(imageView);

यह ऑटोडेटेक्ट रोटेशन और छवि को सही अभिविन्यास में रखेगा

पिकासो आपके ऐप में छवियों को संभालने के लिए एक बहुत शक्तिशाली पुस्तकालय है: इसमें न्यूनतम मेमोरी उपयोग के साथ जटिल छवि परिवर्तन शामिल हैं।


1
दिलचस्प समाधान
भाविक मेहता

8
यह बस छवि को एक दृश्य में लोड करता है, यह आपको एक बिटमैप या एक फाइल नहीं देता है जिसे आप किसी सर्वर में हेरफेर या अपलोड कर सकते हैं।
११:०४

4
इसकी प्रदर्शित छवि के रूप में यह क्लिक किया है। यह आवश्यकतानुसार घूमता नहीं है।
फीनिक्स

1
@Flawyte आप कर सकते हैं कि कॉलबैक के साथ देखने के बजाय लक्ष्य में फ़ाइल को लोड करके / काटकर वापस लौटाया गया बिटमैप: Picasso.with (यह)। जहाँ लक्ष्य = नया लक्ष्य () {ओवरराइड सार्वजनिक शून्य onBitmapLoaded (बिटमैप बिटमैप, पिकासो.लॉबेडफ्रॉम से) {
voytez

समस्या मैं अभी भी सामना कर रहा हूँ यह छवि प्रदर्शित करने के लिए कुछ सेकंड लगते हैं
अनु

12

मैंने इसके लिए समाधान की तलाश में बहुत समय बिताया है। और आखिरकार ऐसा करने में कामयाब रहे। @ जैसन रॉबिन्सन के उत्तर को अपवोट करना न भूलें क्योंकि मेरा उनके पर आधारित है।

तो पहली बात, आप जानते हैं कि एंड्रॉइड 7.0 के बाद से हमें उपयोग करना है FileProviderऔर कुछ कहा जाता है ContentUri, अन्यथा आपको एक कष्टप्रद त्रुटि मिल जाएगी Intent। यह नमूना कोड है:

Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT, getUriFromPath(context, "[Your path to save image]"));
startActivityForResult(intent, CAPTURE_IMAGE_RESULT);

getUriFromPath(Context, String)एंड्रॉइड के उपयोगकर्ता संस्करण के आधार पर विधि इसके आधार पर है FileUri (file://...)या ContentUri (content://...)यह है:

public Uri getUriFromPath(Context context, String destination) {
    File file =  new File(destination);

    if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
        return FileProvider.getUriForFile(context, context.getPackageName() + ".provider", file);
    } else {
        return Uri.fromFile(file);
    }
}

उसके बाद onActivityResultआप उसे पकड़ सकते हैंuri कैमरा द्वारा छवि को कहाँ सहेजा गया है, लेकिन अब आपको कैमरा रोटेशन का पता लगाना है, यहाँ हम moddified @Jason Robinson answer का उपयोग करेंगे:

पहले हमें इसके ExifInterfaceआधार पर बनाने की जरूरत हैUri

@Nullable
public ExifInterface getExifInterface(Context context, Uri uri) {
    try {
        String path = uri.toString();
        if (path.startsWith("file://")) {
            return new ExifInterface(path);
        }
        if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
            if (path.startsWith("content://")) {
                InputStream inputStream = context.getContentResolver().openInputStream(uri);
                return new ExifInterface(inputStream);
            }
        }
    }
    catch (IOException e) {
        e.printStackTrace();
    }
    return null;
}

उपरोक्त कोड को सरल बनाया जा सकता है, लेकिन मैं सब कुछ दिखाना चाहता हूं। इसलिए FileUriहम इसके ExifInterfaceआधार पर बना सकते हैं String path, लेकिन ContentUriहम ऐसा नहीं कर सकते हैं, Android इसका समर्थन नहीं करता है।

उस स्थिति में हमें अन्य कंस्ट्रक्टर का उपयोग करना होगा InputStream। याद रखें कि यह निर्माता डिफ़ॉल्ट रूप से उपलब्ध नहीं है, आपको अतिरिक्त पुस्तकालय जोड़ना होगा:

compile "com.android.support:exifinterface:XX.X.X"

अब हम getExifInterfaceअपने कोण को प्राप्त करने के लिए विधि का उपयोग कर सकते हैं :

public float getExifAngle(Context context, Uri uri) {
    try {
        ExifInterface exifInterface = getExifInterface(context, uri);
        if(exifInterface == null) {
            return -1f;
        }

        int orientation = exifInterface.getAttributeInt(ExifInterface.TAG_ORIENTATION,
                ExifInterface.ORIENTATION_UNDEFINED);

        switch (orientation) {
            case ExifInterface.ORIENTATION_ROTATE_90:
                return 90f;
            case ExifInterface.ORIENTATION_ROTATE_180:
                return 180f;
            case ExifInterface.ORIENTATION_ROTATE_270:
                return 270f;
            case ExifInterface.ORIENTATION_NORMAL:
                return 0f;
            case ExifInterface.ORIENTATION_UNDEFINED:
                return -1f;
            default:
                return -1f;
        }
    }
    catch (Exception e) {
        e.printStackTrace();
        return -1f;
    }
}

अब आपके पास छवि को ठीक से घुमाने के लिए कोण है :)।


2
कार्यान्वयन 'androidx.exifinterface: exifinterface: XXX' यह उन लोगों के लिए है जो androidx का उपयोग कर रहे हैं। आपकी पोस्टिंग के लिए धन्यवाद
Doongsil

11
// Try this way,hope this will help you to solve your problem...

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:gravity="center">
        <ImageView
            android:id="@+id/imgFromCameraOrGallery"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:src="@drawable/ic_launcher"/>
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <Button
            android:id="@+id/btnCamera"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:text="Camera"/>
        <Button
            android:id="@+id/btnGallery"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_marginLeft="5dp"
            android:layout_height="wrap_content"
            android:text="Gallery"/>

    </LinearLayout>
</LinearLayout>

MainActivity.java

    public class MainActivity extends Activity {

    private ImageView imgFromCameraOrGallery;
    private Button btnCamera;
    private Button btnGallery;

    private String imgPath;
    final private int PICK_IMAGE = 1;
    final private int CAPTURE_IMAGE = 2;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        imgFromCameraOrGallery = (ImageView) findViewById(R.id.imgFromCameraOrGallery);
        btnCamera = (Button) findViewById(R.id.btnCamera);
        btnGallery = (Button) findViewById(R.id.btnGallery);

        btnCamera.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                final Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
                intent.putExtra(MediaStore.EXTRA_OUTPUT, setImageUri());
                startActivityForResult(intent, CAPTURE_IMAGE);
            }
        });

        btnGallery.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent();
                intent.setType("image/*");
                intent.setAction(Intent.ACTION_GET_CONTENT);
                startActivityForResult(Intent.createChooser(intent, ""), PICK_IMAGE);
            }
        });

    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if (resultCode == Activity.RESULT_OK) {
            if (requestCode == CAPTURE_IMAGE) {
                setCapturedImage(getImagePath());
            } else if (requestCode == PICK_IMAGE) {
                imgFromCameraOrGallery.setImageBitmap(BitmapFactory.decodeFile(getAbsolutePath(data.getData())));
            }
        }

    }

    private String getRightAngleImage(String photoPath) {

        try {
            ExifInterface ei = new ExifInterface(photoPath);
            int orientation = ei.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);
            int degree = 0;

            switch (orientation) {
                case ExifInterface.ORIENTATION_NORMAL:
                    degree = 0;
                    break;
                case ExifInterface.ORIENTATION_ROTATE_90:
                    degree = 90;
                    break;
                case ExifInterface.ORIENTATION_ROTATE_180:
                    degree = 180;
                    break;
                case ExifInterface.ORIENTATION_ROTATE_270:
                    degree = 270;
                    break;
                case ExifInterface.ORIENTATION_UNDEFINED:
                    degree = 0;
                    break;
                default:
                    degree = 90;
            }

            return rotateImage(degree,photoPath);

        } catch (Exception e) {
            e.printStackTrace();
        }

        return photoPath;
    }

    private String rotateImage(int degree, String imagePath){

        if(degree<=0){
            return imagePath;
        }
        try{
            Bitmap b= BitmapFactory.decodeFile(imagePath);

            Matrix matrix = new Matrix();
            if(b.getWidth()>b.getHeight()){
                matrix.setRotate(degree);
                b = Bitmap.createBitmap(b, 0, 0, b.getWidth(), b.getHeight(),
                        matrix, true);
            }

            FileOutputStream fOut = new FileOutputStream(imagePath);
            String imageName = imagePath.substring(imagePath.lastIndexOf("/") + 1);
            String imageType = imageName.substring(imageName.lastIndexOf(".") + 1);

            FileOutputStream out = new FileOutputStream(imagePath);
            if (imageType.equalsIgnoreCase("png")) {
                b.compress(Bitmap.CompressFormat.PNG, 100, out);
            }else if (imageType.equalsIgnoreCase("jpeg")|| imageType.equalsIgnoreCase("jpg")) {
                b.compress(Bitmap.CompressFormat.JPEG, 100, out);
            }
            fOut.flush();
            fOut.close();

            b.recycle();
        }catch (Exception e){
            e.printStackTrace();
        }
        return imagePath;
    }

    private void setCapturedImage(final String imagePath){
        new AsyncTask<Void,Void,String>(){
            @Override
            protected String doInBackground(Void... params) {
                try {
                    return getRightAngleImage(imagePath);
                }catch (Throwable e){
                    e.printStackTrace();
                }
                return imagePath;
            }

            @Override
            protected void onPostExecute(String imagePath) {
                super.onPostExecute(imagePath);
                imgFromCameraOrGallery.setImageBitmap(decodeFile(imagePath));
            }
        }.execute();
    }

    public Bitmap decodeFile(String path) {
        try {
            // Decode deal_image size
            BitmapFactory.Options o = new BitmapFactory.Options();
            o.inJustDecodeBounds = true;
            BitmapFactory.decodeFile(path, o);
            // The new size we want to scale to
            final int REQUIRED_SIZE = 1024;

            // Find the correct scale value. It should be the power of 2.
            int scale = 1;
            while (o.outWidth / scale / 2 >= REQUIRED_SIZE && o.outHeight / scale / 2 >= REQUIRED_SIZE)
                scale *= 2;
            // Decode with inSampleSize
            BitmapFactory.Options o2 = new BitmapFactory.Options();
            o2.inSampleSize = scale;
            return BitmapFactory.decodeFile(path, o2);
        } catch (Throwable e) {
            e.printStackTrace();
        }
        return null;
    }

    public String getAbsolutePath(Uri uri) {
        if(Build.VERSION.SDK_INT >= 19){
            String id = "";
            if(uri.getLastPathSegment().split(":").length > 1)
                id = uri.getLastPathSegment().split(":")[1];
            else if(uri.getLastPathSegment().split(":").length > 0)
                id = uri.getLastPathSegment().split(":")[0];
            if(id.length() > 0){
                final String[] imageColumns = {MediaStore.Images.Media.DATA };
                final String imageOrderBy = null;
                Uri tempUri = getUri();
                Cursor imageCursor = getContentResolver().query(tempUri, imageColumns, MediaStore.Images.Media._ID + "=" + id, null, imageOrderBy);
                if (imageCursor.moveToFirst()) {
                    return imageCursor.getString(imageCursor.getColumnIndex(MediaStore.Images.Media.DATA));
                }else{
                    return null;
                }
            }else{
                return null;
            }
        }else{
            String[] projection = { MediaStore.MediaColumns.DATA };
            Cursor cursor = getContentResolver().query(uri, projection, null, null, null);
            if (cursor != null) {
                int column_index = cursor.getColumnIndexOrThrow(MediaStore.MediaColumns.DATA);
                cursor.moveToFirst();
                return cursor.getString(column_index);
            } else
                return null;
        }

    }

    private Uri getUri() {
        String state = Environment.getExternalStorageState();
        if(!state.equalsIgnoreCase(Environment.MEDIA_MOUNTED))
            return MediaStore.Images.Media.INTERNAL_CONTENT_URI;

        return MediaStore.Images.Media.EXTERNAL_CONTENT_URI;
    }

    public Uri setImageUri() {
        Uri imgUri;
        String state = Environment.getExternalStorageState();
        if (Environment.MEDIA_MOUNTED.equals(state)) {
            File file = new File(Environment.getExternalStorageDirectory() + "/DCIM/",getString(R.string.app_name) + Calendar.getInstance().getTimeInMillis() + ".png");
            imgUri = Uri.fromFile(file);
            imgPath = file.getAbsolutePath();
        }else {
            File file = new File(getFilesDir() ,getString(R.string.app_name) + Calendar.getInstance().getTimeInMillis()+ ".png");
            imgUri = Uri.fromFile(file);
            this.imgPath = file.getAbsolutePath();
        }
        return imgUri;
    }

    public String getImagePath() {
        return imgPath;
    }
}

परफेक्ट सॉल्यूशन हरेश भाई
सागर पिटिया

9

आप प्रलेखन में Google द्वारा संकेत दिए गए कैमरा सेंसर के उन्मुखीकरण को पढ़ सकते हैं: https://developer.android.com/reference/android/hardware/camera2/CameraCharacteristics.html

SENSOR_ORIENTATION

Added in API level 21
Key<Integer> SENSOR_ORIENTATION
Clockwise angle through which the output image needs to be rotated to be upright on the device screen in its native orientation.

Also defines the direction of rolling shutter readout, which is from top to bottom in the sensor's coordinate system.

Units: Degrees of clockwise rotation; always a multiple of 90

Range of valid values:
0, 90, 180, 270

This key is available on all devices.

नमूना कोड:

CameraManager manager = (CameraManager) getSystemService(Context.CAMERA_SERVICE);
int orientation = 0;
try {
    String cameraId = manager.getCameraIdList()[0];
    CameraCharacteristics characteristics = manager.getCameraCharacteristics(cameraId);
    orientation = characteristics.get(CameraCharacteristics.SENSOR_ORIENTATION);
}
catch (Exception e)
{
}

6

जेसन रॉबिन्सन का उत्तर और सामी एल्तामावी का उत्तर उत्कृष्ट है।

Aproach को पूरा करने के लिए बस एक सुधार, आपको कॉम्पिटिटर ExifInterface का उपयोग करना चाहिए।

com.android.support:exifinterface:${lastLibVersion}

आप "फ़ाइल नहीं मिला अपवाद" से बचने के लिए uri रास्तों के बजाय ExifInterface (pior API <24) के साथ InputStream(से ContentResolver) तुरंत इंस्टेंट कर पाएंगे।

https://android-developers.googleblog.com/2016/12/introducing-the-exifinterface-support-library.html


4

आम तौर पर ExifInterface के साथ समस्या को हल करने की सिफारिश की जाती है , जैसे @Jason Robinson ने सुझाव दिया था। यदि यह दृष्टिकोण काम नहीं करता है, तो आप ले ली गई नवीनतम छवि के ओरिएंटेशन को देखने की कोशिश कर सकते हैं ...

private int getImageOrientation(){
    final String[] imageColumns = { MediaStore.Images.Media._ID, MediaStore.Images.ImageColumns.ORIENTATION };
    final String imageOrderBy = MediaStore.Images.Media._ID+" DESC";
    Cursor cursor = getContentResolver().query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
            imageColumns, null, null, imageOrderBy);

    if(cursor.moveToFirst()){
        int orientation = cursor.getInt(cursor.getColumnIndex(MediaStore.Images.ImageColumns.ORIENTATION));
        cursor.close();
        return orientation;
    } else {
        return 0;
    }
}

1
मुझे लगता है कि यह कोड केवल इस बात का पता लगाता है कि किस डिग्री में रोटेशन हुआ। अब मैं ऐसा करने में सक्षम हूं, लेकिन अगले कार्य में असमर्थ हूं यानी छवि को घुमाने के लिए।
शिरीष हेरवाडे

आप सही हैं, लेकिन आपने इस थ्रेड में रोटेशन के लिए नहीं पूछा, तो चलिए इसे साफ रखते हैं;) यही कारण है कि मैंने अपना जवाब आपकी समस्या को आपके अन्य थ्रेड में डाल दिया है ... आशा है कि मदद करता है, यह काम करता है me: stackoverflow.com/questions/14123809/…
क्रिस कॉनवे

4

अफसोस की बात है, ऊपर @ jason-robinson जवाब मेरे लिए काम नहीं किया।

हालाँकि रोटेट फंक्शन पूरी तरह से काम करता है:

public static Bitmap rotateImage(Bitmap source, float angle) {
    Matrix matrix = new Matrix();
    matrix.postRotate(angle);
    return Bitmap.createBitmap(source, 0, 0, source.getWidth(), source.getHeight(), matrix,
            true);
}

मुझे ओरिएंटेशन प्राप्त करने के लिए निम्न कार्य करना था क्योंकि एक्सिफ़ ओरिएंटेशन हमेशा 0 था

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode,resultCode,data);
    if (requestCode == RESULT_LOAD_IMAGE && resultCode == RESULT_OK && data != null) {
            Uri selectedImage = data.getData();
            String[] orientationColumn = {MediaStore.Images.Media.ORIENTATION};
            Cursor cur = managedQuery(imageUri, orientationColumn, null, null, null);
            int orientation = -1;
            if (cur != null && cur.moveToFirst()) {
                    orientation = cur.getInt(cur.getColumnIndex(orientationColumn[0]));
            }
            InputStream imageStream = getContentResolver().openInputStream(selectedImage);
            Bitmap bitmap = BitmapFactory.decodeStream(imageStream);
            switch(orientation) {
                    case 90:
                            bitmap = rotateImage(chosen_image_bitmap, 90);
                            break;
                    case 180:
                            bitmap = rotateImage(chosen_image_bitmap, 180);
                            break;
                    case 270:
                            bitmap = rotateImage(chosen_image_bitmap, 270);
                            break;
                    default:
                            break;
            }
            imageView.setImageBitmap(bitmap );

1
alwasys 0, samsung 7
djdance

2

बेहतर चित्र को एक विशिष्ट अभिविन्यास में लेने की कोशिश करें।

android:screenOrientation="landscape"
android:configChanges="orientation|keyboardHidden"

सर्वोत्तम परिणामों के लिए कैमराव्यू गतिविधि में लैंडस्केप ओरिएंटेशन दें।


क्षमा करें, यह काम नहीं करता है। वास्तव में टैब पर, onActivityResult को अंजाम देने के बाद हर बार, अजीब तरह से onCreate कहा जाता है।
शिरीष हेरवाडे 12

1
क्षमा करें, समस्या यह है कि
शिरीष हेरवाडे

2

यदि किसी को अभिविन्यास प्राप्त करने के लिए एंड्रॉइड 4.4 (किटकैट) ExifInterfaceपर समस्याओं का अनुभव होता है , तो ऐसा इसलिए हो सकता है क्योंकि यूआरआई से गलत रास्ता मिला है। स्टैक ओवरफ्लो प्रश्न में प्रचारक के लिए एक समाधान देखें URI, Android किटकैट नए स्टोरेज एक्सेस फ्रेमवर्क से वास्तविक पथ प्राप्त करेंgetPath


यह एक टिप्पणी है जो मुझे चाहिए। यार, बहुत बहुत धन्यवाद।
जोएल निमन


1

चयनित उत्तर इस और इसी तरह के सवालों के जवाब में सबसे आम विधि का उपयोग करता है। हालाँकि, यह सैमसंग पर फ्रंट और बैक दोनों कैमरों के साथ काम नहीं करता है। एक समाधान की तलाश में जो सैमसंग और अन्य प्रमुख निर्माताओं के लिए फ्रंट और बैक दोनों कैमरों में काम करता है, nvhausid का यह जवाब कमाल है:

https://stackoverflow.com/a/18915443/6080472

जो लोग क्लिक नहीं करना चाहते हैं, उनके लिए संबंधित मैजिक कैमराइन्फो का उपयोग करना है, बल्कि फिर EXIF ​​पर निर्भर है।

Bitmap realImage = BitmapFactory.decodeByteArray(data, 0, data.length);
android.hardware.Camera.CameraInfo info = new android.hardware.Camera.CameraInfo();
android.hardware.Camera.getCameraInfo(mCurrentCameraId, info);
Bitmap bitmap = rotate(realImage, info.orientation);

लिंक में पूर्ण कोड।


नहीं, विभिन्न कोणों में गलत घुमाव (smasung s7)। मेरा मतलब गैलरी जरूर है
djdance

1

यह शायद बिना कहे चला जाता है लेकिन हमेशा याद रखें कि आप अपने सर्वर पर इन इमेज हैंडलिंग मुद्दों में से कुछ को संभाल सकते हैं। मैंने छवि के तत्काल प्रदर्शन को संभालने के लिए इस धागे में निहित प्रतिक्रियाओं की तरह उपयोग किया। हालाँकि मेरे एप्लिकेशन को सर्वर पर संग्रहीत करने के लिए छवियों की आवश्यकता होती है (यह संभवतः एक सामान्य आवश्यकता है यदि आप चाहते हैं कि छवि उपयोगकर्ताओं को फोन स्विच करने के लिए बनी रहे)।

इस विषय से संबंधित कई थ्रेड्स में निहित समाधान EXIF ​​डेटा की दृढ़ता की कमी पर चर्चा नहीं करते हैं जो बिटमैप की छवि संपीड़न से नहीं बचते हैं, जिसका अर्थ है कि आपको प्रत्येक बार जब आपके सर्वर ने इसे लोड किया है तो आपको छवि को घुमाने की आवश्यकता होगी। वैकल्पिक रूप से, आप EXIF ​​ओरिएंटेशन डेटा को अपने सर्वर पर भेज सकते हैं, और यदि आवश्यक हो तो छवि को घुमा सकते हैं।

सर्वर पर स्थायी समाधान बनाना मेरे लिए आसान था क्योंकि मुझे एंड्रॉइड के क्लैन्डस्टाइन फ़ाइल पथ के बारे में चिंता करने की आवश्यकता नहीं थी।


क्या आप इसे इमेज कैप्चर टाइम पर एक बार घुमा सकते हैं और इसे इस तरह से बचा सकते हैं ताकि इसे फिर से घुमाने की जरूरत न पड़े?
jk7

हाँ, आप कर सकते हैं और यह वास्तव में मैं अंत में लागू करने की प्रक्रिया है। मुझे Android फ़ोन पर छवि से फ़ाइल पथ प्राप्त करने में समस्या हो रही थी जो मुझे ऐसा करने की अनुमति देगा। यह वह उत्तर है जिसने मदद की: stackoverflow.com/a/36714242/5443056
ब्रैडेन होल्ट

1

इस समस्या का सबसे सरल समाधान:

captureBuilder.set(CaptureRequest.JPEG_ORIENTATION,
                   characteristics.get(CameraCharacteristics.SENSOR_ORIENTATION));

मैं इमेज को jpg फॉर्मेट में सेव कर रहा हूं।


0

यहाँ है Xamarin.Android संस्करण है:

@ जैसन रॉबिन्सन के जवाब से :

Bitmap rotate(Bitmap bitmap, int angle)
{
    var matrix = new Matrix();
    matrix.PostRotate(angle);

    return Bitmap.CreateBitmap(bitmap, 0, 0, bitmap.Width, bitmap.Height, matrix, true);
}

Bitmap rotateIfRequired(Bitmap bitmap, string imagePath)
{
    var ei = new ExifInterface(imagePath);
    var orientation = ei.GetAttributeInt(ExifInterface.TagOrientation, (int)Android.Media.Orientation.Undefined);

    switch (orientation)
    {
        case (int)Android.Media.Orientation.Rotate90: return rotate(bitmap, 90);
        case (int)Android.Media.Orientation.Rotate180: return rotate(bitmap, 180);
        case (int)Android.Media.Orientation.Rotate270: return rotate(bitmap, 270);
        default: return bitmap;
    }
}

फिर calculateInSampleSizeविधि:

int calculateInSampleSize(BitmapFactory.Options options, int reqW, int reqH)
{
    float h = options.OutHeight;
    float w = options.OutWidth;
    var inSampleSize = 1;

    if (h > reqH || w > reqW)
    {
        if (reqH == 0) inSampleSize = (int)Math.Floor(w / reqW);
        else if (reqW == 0) inSampleSize = (int)Math.Floor(h / reqH);
        else
        {
            var hRatio = (int)Math.Floor(h / reqH);
            var wRatio = (int)Math.Floor(w / reqW);
            inSampleSize = false ? Math.Max(hRatio, wRatio) : Math.Min(hRatio, wRatio);
        }
    }

    return inSampleSize;
}

@Sami Eltamawy के उत्तर से :

Bitmap handleSamplingAndRotationBitmap(string imagePath)
{
    var maxHeight = 1024;
    var maxWidth = 1024;

    var options = new BitmapFactory.Options();
    options.InJustDecodeBounds = true;
    BitmapFactory.DecodeFile(imagePath, options);

    options.InSampleSize = calculateInSampleSize(options, maxWidth, maxHeight);

    options.InJustDecodeBounds = false;

    var bitmap = BitmapFactory.DecodeFile(imagePath, options);

    bitmap = rotateIfRequired(bitmap, imagePath);

    return bitmap;
}

0

यदि आप फ्रेस्को का उपयोग कर रहे हैं, तो आप इसका उपयोग कर सकते हैं -

final ImageRequest imageRequest = ImageRequestBuilder.newBuilderWithSource(uri)
.setRotationOptions(RotationOptions.autoRotate())
.build();

mSimpleDraweeView.setController(
Fresco.newDraweeControllerBuilder()
    .setImageRequest(imageRequest)
    .build());

यह स्वचालित रूप से Exif डेटा के आधार पर छवियों को घुमाता है।

स्रोत: https://frescolib.org/docs/rotation.html


0

नीचे दिए गए कोड ने मेरे साथ काम किया, इसे फाइलयूरी से बिटमैप मिला, और यदि आवश्यक हो तो रोटेशन फिक्सिंग करें:

    private fun getCapturedImage(selectedPhotoUri: Uri): Bitmap {
        val bitmap = when {
            Build.VERSION.SDK_INT < 28 -> MediaStore.Images.Media.getBitmap(
                this.contentResolver,
                selectedPhotoUri
            )
            else -> {
                val source = ImageDecoder.createSource(this.contentResolver, selectedPhotoUri)
                ImageDecoder.decodeBitmap(source)
            }
        }

        // If the image is rotated, fix it
        return when (ExifInterface(contentResolver.run { openInputStream(selectedPhotoUri) }).getAttributeInt(
            ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_UNDEFINED)) {
            ExifInterface.ORIENTATION_ROTATE_90 ->
                Bitmap.createBitmap(bitmap, 0, 0, bitmap.width, bitmap.height, Matrix().apply {
                    postRotate(90F) }, true)
            ExifInterface.ORIENTATION_ROTATE_180 ->
                Bitmap.createBitmap(bitmap, 0, 0, bitmap.width, bitmap.height, Matrix().apply {
                    postRotate(180F) }, true)
            ExifInterface.ORIENTATION_ROTATE_270 ->
                Bitmap.createBitmap(bitmap, 0, 0, bitmap.width, bitmap.height, Matrix().apply {
                    postRotate(270F) }, true)
            else -> bitmap
        } 
    }

0

ExifInterface का उपयोग किए बिना इस समस्या के लिए एक उत्तर मिला । हम कैमरे के रोटेशन को या तो फ्रंट कैमरा या बैक कैमरा जो भी आप उपयोग कर रहे हैं, तब बिटमैप को बनाते समय हम Matrix.postRotate (डिग्री) का उपयोग करके बिटमैप को घुमा सकते हैं

public int getRotationDegree() {
    int degree = 0;

    for (int i = 0; i < Camera.getNumberOfCameras(); i++) {
        Camera.CameraInfo info = new Camera.CameraInfo();
        Camera.getCameraInfo(i, info);
        if (info.facing == Camera.CameraInfo.CAMERA_FACING_BACK) {
            degree = info.orientation;

            return degree;
        }
    }

    return degree;
}

रोटेशन की गणना के बाद आप नीचे की तरह बिटमैप को घुमा सकते हैं:

 Matrix matrix = new Matrix();

 matrix.postRotate(getRotationDegree());

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

हरारे बी.एम. आपका बिटमैप होना चाहिए।

यदि आप अपने फ्रंट कैमरे के रोटेशन को जानना चाहते हैं तो बस Camera.CameraInfo.CAMERA_FACING_BACK को Camera.CameraInfo.CAMERA_FACING_FRONT में बदल दें। ऊपर दिए गए ।

आशा है कि ये आपकी मदद करेगा।


1
भयानक जवाब लेकिन मैं गलती से उठी। यह कोड मानता है कि आपकी गैलरी की प्रत्येक छवि आपके कैमरे से बनाई गई है । यह मामला नहीं है
Zun

-1

मैंने एक कोटलिन एक्सटेंशन फ़ंक्शन बनाया जो @ जैसन रॉबिन्सन के उत्तर के आधार पर कोटलिन डेवलपर्स के लिए ऑपरेशन को सरल बनाता है। मुझे उम्मीद है यह मदद करेगा।

fun Bitmap.fixRotation(uri: Uri): Bitmap? {

    val ei = ExifInterface(uri.path)

    val orientation: Int = ei.getAttributeInt(
        ExifInterface.TAG_ORIENTATION,
        ExifInterface.ORIENTATION_UNDEFINED
    )

    return when (orientation) {
        ExifInterface.ORIENTATION_ROTATE_90 -> rotateImage( 90f)
        ExifInterface.ORIENTATION_ROTATE_180 -> rotateImage( 180f)
        ExifInterface.ORIENTATION_ROTATE_270 -> rotateImage( 270f)
        ExifInterface.ORIENTATION_NORMAL -> this
        else -> this
    }
}

fun Bitmap.rotateImage(angle: Float): Bitmap? {
    val matrix = Matrix()
    matrix.postRotate(angle)
    return Bitmap.createBitmap(
        this, 0, 0, width, height,
        matrix, true
    )
}

1
भयानक लेकिन सभी समाधान के रूप में ही इस मुद्दे से ग्रस्त, विस्तार या एक समारोह के रूप - एंड्रॉयड से 10 पर काम नहीं करता
लियोर Iluz

-2

इस त्रुटि को ठीक करने के लिए अधिक सरल कमांड है।

बस अपनेImageView.setBitmap (बिटमैप) के बाद जोड़ें; यह yourImageView.setRotation (90);

यह तय हुआ मेरा। आशा है ये मदद करेगा !


6
जैसा कि ओपी ने कहा, कुछ डिवाइस छवि को घुमाते नहीं हैं, कुछ इसे 90 डिग्री, कुछ 180, ..चेक घुमाते हैं। इसलिए हमेशा इसे 90 पर रोटेट करना कुछ मामलों में गलत होगा।
jk7

-8

यह मेरे लिए काम किया

ImageView display_image = findViewById(R.id.image);
this.display_image.setRotation(90);

योग्य क्या यह लकीर है। आपको कैसे पता चलेगा कि कैमरा द्वारा खींची गई फोटो है -90 / 90/0 / ... ... उपयोगकर्ता परिदृश्य के रूप में फोटो खींच रहा होगा और इससे कोई फर्क नहीं पड़ता कि आप क्या घुमाएंगे ... lmao
Alex

इस मामले में यह मेरे लिए काम करता है क्योंकि मेरे मामले में उपयोगकर्ता हमेशा फोन के साथ चित्र ऊर्ध्वाधर में ले जाएगा।
क्रिश्चियन एडुआर्डो गल्दामेज़
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.