Example usage for javafx.scene.image ImageView getBoundsInParent

List of usage examples for javafx.scene.image ImageView getBoundsInParent

Introduction

In this page you can find the example usage for javafx.scene.image ImageView getBoundsInParent.

Prototype

public final Bounds getBoundsInParent() 

Source Link

Usage

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();
}