如何在 Scene Builder 中添加 GIF Java FX
How to add a GIF in Scene Builder Java FX
如何在 JavaFx 中引入 GIF?我必须使用 ImageView 才能添加 GIF 吗?
是的,您可以在 ImageView 中添加 .gif,因为 .gif 是一种图像文件格式。如果.gif 文件存在于您的项目的根目录中,您可以直接在场景构建器的 ImageView 中浏览和设置该文件。
试试这个
@FXML
private ImageView imageview;
@Override
public void initialize(URL url, ResourceBundle rb) {
Image i = new Image(new File("location/file.gif").toURI().toString());
imageview.setImage(i);
}
对我有用。
如何在 JavaFx 中引入 GIF?我必须使用 ImageView 才能添加 GIF 吗?
是的,您可以在 ImageView 中添加 .gif,因为 .gif 是一种图像文件格式。如果.gif 文件存在于您的项目的根目录中,您可以直接在场景构建器的 ImageView 中浏览和设置该文件。
试试这个
@FXML
private ImageView imageview;
@Override
public void initialize(URL url, ResourceBundle rb) {
Image i = new Image(new File("location/file.gif").toURI().toString());
imageview.setImage(i);
}
对我有用。