When loading an image for painting annotations, Pillow is used to load the image. Trouble is, the Image.open function does not take EXIF information into the consideration, so the width and height are swapped in the end result.
Consider applying:
ImageOps.exif_transpose(image)
Perhaps as an option? I could submit a PR.
When loading an image for painting annotations, Pillow is used to load the image. Trouble is, the Image.open function does not take EXIF information into the consideration, so the width and height are swapped in the end result.
Consider applying:
Perhaps as an option? I could submit a PR.