(int height)
| 1756 | /// |
| 1757 | /// the newly created image |
| 1758 | public Image scaledHeight(int height) { |
| 1759 | float ratio = ((float) height) / ((float) getHeight()); |
| 1760 | return scaled(Math.max(1, (int) (getWidth() * ratio)), height); |
| 1761 | } |
| 1762 | |
| 1763 | /// Scales the image while maintaining the aspect ratio to the smaller size |
| 1764 | /// image |