作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的应用程序中,我使用 ImageView 来显示图像。我不希望图像失真,所以我调用setPreserveRatio(true) 。如文档中所述,高度和宽度“可以缩放以获得最适合宽度乘高度的矩形,同时保留原始的纵横比”。是否有可能检索缩放后的图像高度和宽度?问题是,我不知道什么才是“最合适的”。
最佳答案
幸运的是,有同样的问题,您可以获取显示图像的边界并计算比率,如下所示:
@FXML
ImageView imageView;
double getScaleXRatio()
{
return imageView.getBoundsInParent().getWidth()/imageView.getImage().getWidth();
}
double getScaleYRatio()
{
return imageView.getBoundsInParent().getHeight()/imageView.getImage().getHeight();
}
关于JavaFX ImageView : Can I retrieve the scaled image size when preserveRatio = true?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20017185/
我是一名优秀的程序员,十分优秀!