-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Description
What steps will reproduce the problem?
1. Take an image with EXIF rotation and use the convenience method to create a
thumbnail
What is the expected output? What do you see instead?
Since the latest version EXIF rotation information is supposed to be respected.
This is true if you use:
Thumbnails.of(file).size(width,height).asBufferedImage();
I would expect the same behaviour for :
Thumbnailator.createThumbnail(file, (width,height)
However, the former rotates according the EXIF and the latter does not.
Perhaps I'm mistaken, but this seems unexpected.
What version of the product are you using? On what operating system? Which
version of Java (Sun/Oracle? OpenJDK?) ?
This is in NetBeans 7.3 (whatever JDK that uses) on OS X 10.8.3. Your library
seems to work on OS X btw otherwise, although I have only used a little itty
bitty piece of it.
Please provide any additional information below.
This is not a showstopper I just thought I'd let you know. Thanks for this
fantastic library. I had written my own little chunk of code and it was messy
and hacky. Now it's clean, and it respects the EXIF data.
Original issue reported on code.google.com by br...@fireplan.ca
on 19 May 2013 at 4:40