List of usage examples for javafx.scene.image ImageView getBoundsInParent
public final Bounds getBoundsInParent()
From source file:net.rptools.tokentool.util.ImageUtil.java
public static double getScaleXRatio(ImageView imageView) { return imageView.getBoundsInParent().getWidth() / imageView.getImage().getWidth(); }
From source file:net.rptools.tokentool.util.ImageUtil.java
public static double getScaleYRatio(ImageView imageView) { return imageView.getBoundsInParent().getHeight() / imageView.getImage().getHeight(); }