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

Method getHeight

CodenameOne/src/com/codename1/ui/Image.java:1495–1502  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1493 ///
1494 /// the height of the image
1495 public int getHeight() {
1496 if (transform != 0) {
1497 if (transform == 90 || transform == 270) {
1498 return Display.impl.getImageWidth(image);
1499 }
1500 }
1501 return Display.impl.getImageHeight(image);
1502 }
1503
1504 /// Callback invoked internally by Codename One to draw the image/frame onto the display.
1505 /// Image subclasses can override this method to perform drawing of custom image types.

Callers 15

calcPreferredSizeMethod · 0.95
getPreferredHMethod · 0.95
getPreferredWMethod · 0.95
updateStatusMethod · 0.95
animateMethod · 0.95
setSignatureImageMethod · 0.95
paintMethod · 0.95
calcPreferredSizeMethod · 0.95
resolveArtMethod · 0.95
cacheImageMethod · 0.95
postResponseMethod · 0.95

Calls 2

getImageWidthMethod · 0.45
getImageHeightMethod · 0.45