static BufferedImage scaleImageToHeight(BufferedImage img, int newH) { int newW = iround(img.getWidth()*(double) newH/img.getHeight()); ret resizeImage(img, newW, newH); }