I am using imgscalr to create scale my images in a Grails application. Here is the code:

BufferedImage sourceImg = ImageIO.read(new File("/tmp" + File.separator + filename))
BufferedImage destImg = null

if(sourceImg.height >= sourceImg.width){
    destImg = Scalr.resize(sourceImg, Scalr.Method.AUTOMATIC, Scalr.Mode.FIT_TO_HEIGHT, 800) 
}
else{
    destImg = Scalr.resize(sourceImg, Scalr.Method.AUTOMATIC, Scalr.Mode.FIT_TO_WIDTH, 800)
}

File newFile = new File("/tmp/processed" + File.separator + filename)
String formatName = foto.nomeArquivo.substring(foto.nomeArquivo.lastIndexOf('.')+1);
ImageIO.write(imgDestino, formatName.toUpperCase(), newFile)

Please do not mind about formatName so far.... I am still testing the imgscalr library.

All my images end in landscape orientation. I am developing in a Mac OS.

Thanks

link|improve this question
Felipe, I am the author of imgscalr; what I think might be happening is that your picture is actually in landscape mode, but the ORIENTATION Exif data in the image indicates that it should be rotated, so when you view it in a picture viewer, it shows it in portrait mode (but was actually taken with the camera turned sideways). imgscalr currently doesn't consider EXIF data from the original image when generating a scaled copy, but I think it needs to. I've filed an issue to try and address this in a future release. – Riyad Kalla Jul 27 '11 at 16:38
Riyad, thank you very much for your comments. I tried with some other images, and you must be right. Some of them imgscalr are being scaled in the correct orientation. So the problem is with the original file indeed. But if you can work around this would be really great. I am trying to have a 100% java solution, instead of relying on ImageMagick. Tks anyway – felipenasc Jul 27 '11 at 17:26
Felipe, I'll get that feature in shortly; it requires a bit of good engineering and thinking so it's not a quick fix, but I'll make sure it gets in there and done in a nice/tight way. Thank you for the feedback! – Riyad Kalla Jul 27 '11 at 19:43
Felipe, I have found a workaround for you that should work quickly and easily until I can find a way of addressing this without bloating the API. This library can do a lossless transform based on the EXIF orientation information (mediachest.sourceforge.net/mediautil) you can do that THEN give the image to imgscalr to scale it for you. – Riyad Kalla Aug 2 '11 at 21:46
That´s great Riyad. Thanks so much for the help and the good work on imgscalr. – felipenasc Aug 10 '11 at 12:51
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.