/*
* This will get an image file and returns a byte array resized by the given value.
*/
package tajneed;
import java.awt.image.BufferedImage;
import java.io.ByteArrayOutputStream;
import java.io.File;
import javax.imageio.ImageIO;
import org.imgscalr.Scalr;
public class ImageResizer {
public static byte[] resize(File icon) {
try {
BufferedImage originalImage = ImageIO.read(icon);
originalImage= Scalr.resize(originalImage, Scalr.Method.QUALITY, Scalr.Mode.FIT_EXACT, 128, 153);
//To save with original ratio uncomment next line and comment the above.
//originalImage= Scalr.resize(originalImage, 153, 128);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ImageIO.write(originalImage, "jpg", baos);
baos.flush();
byte[] imageInByte = baos.toByteArray();
baos.close();
return imageInByte;
} catch (Exception e) {
return null;
}
}
}