MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / scaledHeight

Method scaledHeight

CodenameOne/src/com/codename1/ui/Image.java:1758–1761  ·  view source on GitHub ↗
(int height)

Source from the content-addressed store, hash-verified

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

Callers 3

scaledImplMethod · 0.95
testScaledHeightMethod · 0.95
invoke8Method · 0.45

Calls 4

getHeightMethod · 0.95
scaledMethod · 0.95
maxMethod · 0.95
getWidthMethod · 0.95

Tested by 1

testScaledHeightMethod · 0.76