I'm using this code to get a thumbnail from a full size image path:
imagenThumbnail = ThumbnailUtils.extractThumbnail(BitmapFactory.decodeFile(pathImagen), 320, 320);
The problem is that when i use an imageview to display the thumbnail it is displayed the thumbnail rotated 90 degrees to the right. The image has been taken in vertical mode but i don't know why it is displayed rotated.
Any suggestion will be welcome.
Thank you in advanced.