How do I resize an imageview image in javafx?(如何在 javafx 中调整 imageview 图像的大小?)
问题描述
我需要在 JavaFX 中将图像调整为特定尺寸,例如 100 x 100 像素.
I need to resize an image to specific dimensions, 100 by 100 pixels for example, in JavaFX.
我怎样才能做到这一点?Image 或 ImageView 类可以用于此目的吗?
How can I achieve that? Could the Image or the ImageView class be used for this purpose?
推荐答案
是的,使用 ImageView
.打个电话就行了
Yes, using an ImageView
. Just call
ImageView imageView = new ImageView("...");
imageView.setFitHeight(100);
imageView.setFitWidth(100);
默认情况下,它不会保留 width:height
比率:您可以使用
By default, it will not preserve the width:height
ratio: you can make it do so with
imageView.setPreserveRatio(true);
或者,您可以在加载时直接调整 图像 的大小:
Alternately you can resize the Image directly on loading:
Image image = new Image("my/res/flower.png", 100, 100, false, false);
在加载时调整图像大小对于较大图像的缩略图之类的事情很有用,因为所需的内存比将较大的图像数据表示存储在内存中要低.
Resizing the image on loading is useful for things like thumbnails of larger images as the memory required is lower than storing the larger image data representation in memory.
这篇关于如何在 javafx 中调整 imageview 图像的大小?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 javafx 中调整 imageview 图像的大小?
基础教程推荐
- 在螺旋中写一个字符串 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01