How to fix flutter camera image picker rotation issue? – Genuine Coder

How to fix flutter camera image picker rotation issue?

How to fix flutter image picker orientation rotation fix

Flutter camera image picker has a known issue of returning images with wrong unexpected rotation. The issue has been raised in the GitHub and marked as closed, but still occurs in the latest stable release. The issue can, however, be resolved easily with the help of exif-rotation plugin. This issue is known to be affecting both iOS and Android platforms.

Why the image is rotated

When we take an image from the camera, we could be holding the phone in any orientation. Sometimes we take photos in landscape mode, sometimes portait and so on. The camera app takes the photo and adds special metadata entries (EXIF data) to the file so that it can be rotated properly in image viewers.

Flutter image_picker has a bug where it doesn’t process the image with the given EXIF data which makes the image appear in the wrong rotation. However, we can fix it by considering the EXIF data and rotating the image manually as the metadata suggests.

How to fix the rotation?

To fix the unwanted image rotation, we need to rotate the image based on the metadata available. Luckily, a library named flutter_exif_rotation is available. Once the image is taken from the image-picker, give it to the FlutterExifRotation library. The library will rotate it, if needed, based on the available EXIF data.

Let’s have a look into the sample code.

Firstly, add the flutter_exif_rotation library to your pubspec.yaml file.

dependencies:
  ...
  flutter_exif_rotation: ^0.5.1
  ...

Sample code for image pick and rotation fix

import 'dart:async';
import 'dart:io';

import 'package:flutter_exif_rotation/flutter_exif_rotation.dart'; //EXIF rotation library
import 'package:image_picker/image_picker.dart'; //Image picker library

class CameraService {

  Future<XFile?> pickImage() async {
    //Take a photo from camera
    final XFile? image = await ImagePicker().pickImage(
      source: ImageSource.camera, maxWidth: 1200, maxHeight: 1200, requestFullMetadata: true
    );
    if (image != null) {
      // Rotate the image to fix the wrong rotation coming from ImagePicker
      File rotatedImage = await FlutterExifRotation.rotateImage(path: image.path);
      return XFile(rotatedImage.path); //Return the file
    }
    return image;
  }

}

In the above code, The function FlutterExifRotation#rotateImage will fix the rotation of the image by considering the EXIF orientation tags. This solution has been proposed in the GitHub and many people supported this as the best way available at the moment.

If you have liked this article, you might also like other Fltuter tutorials I have written.

Comments

65 responses to “How to fix flutter camera image picker rotation issue?”

  1. … [Trackback]

    […] Here you will find 64163 additional Info on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  2. … [Trackback]

    […] Here you will find 48503 more Information to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  3. … [Trackback]

    […] Info to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  4. … [Trackback]

    […] Read More Info here on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  5. … [Trackback]

    […] Find More here to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  6. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  7. … [Trackback]

    […] Read More on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  8. … [Trackback]

    […] Find More here to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  9. … [Trackback]

    […] Find More here on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  10. … [Trackback]

    […] Find More Information here on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  11. … [Trackback]

    […] Read More on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  12. … [Trackback]

    […] Find More on to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  13. … [Trackback]

    […] Information on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  14. … [Trackback]

    […] Information to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  15. … [Trackback]

    […] Read More here on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  16. … [Trackback]

    […] Info to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  17. … [Trackback]

    […] Information on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  18. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  19. … [Trackback]

    […] Info on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  20. … [Trackback]

    […] Info to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  21. … [Trackback]

    […] Find More on to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  22. … [Trackback]

    […] Read More here to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  23. … [Trackback]

    […] Find More on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  24. … [Trackback]

    […] Information to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  25. … [Trackback]

    […] Read More Information here on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  26. … [Trackback]

    […] Find More here to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  27. … [Trackback]

    […] Info to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  28. … [Trackback]

    […] Find More Info here on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  29. … [Trackback]

    […] Info to that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  30. … [Trackback]

    […] Here you can find 95751 additional Information on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  31. … [Trackback]

    […] Read More on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  32. … [Trackback]

    […] Find More on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  33. … [Trackback]

    […] Read More here on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  34. … [Trackback]

    […] Read More Information here on that Topic: genuinecoder.com/flutter-camera-image-orientation-rotation-issue-fix/ […]

  35. […] buy rybelsus […]

  36. […] order clomid online […]

  37. […] buy 5mg cialis online […]

  38. […] cialis no prescription […]

  39. […] how much does 50 mg viagra cost […]

  40. […] inseng root benefits for men […]

  41. kamagra en ligne sans ordonnance du jour au lendemain

    kamagra medicament fonts prescrire

  42. buying enclomiphene buy online canada

    how to order enclomiphene overnight no rx

  43. how to buy androxal buy san francisco

    get androxal purchase toronto

  44. ordering dutasteride without rx online

    how to buy dutasteride usa where to buy

  45. how to buy flexeril cyclobenzaprine australia no prescription

    buy flexeril cyclobenzaprine buy in the uk

  46. cheapest buy gabapentin generic available in united states

    gabapentin non prescription

  47. buy cheap fildena generic uk next day delivery

    how to order fildena buy uk no prescription

  48. get itraconazole australia generic online

    buy itraconazole in London

  49. best staxyn price

    Online staxyn no perscription

  50. discount avodart generic uk

    order avodart generic cheap

  51. buy cheap rifaximin generic best price

    how to order rifaximin generic name

  52. order xifaxan on line

    buy xifaxan without rx online

  53. dalナ。テュ den dodテ。nテュ kamagra bez skriptu

    kanada kamagra neobecná

  54. […] how much is generic cialis […]

  55. […] roman cialis cost […]

  56. […] costco cialis […]

  57. […] cialis canada pharmacy […]

  58. […] sildenafil citrate 100mg en español […]

  59. dapoxetine hydrochloride 30 mg

    dapoxetine hydrochloride 30 mg

  60. mirtazapine 15 mg tablet price

    mirtazapine 15 mg tablet price

  61. sertraline hydrochloride

    sertraline hydrochloride

Leave a Reply Cancel reply

Exit mobile version