在JAVA FX中加载图像

时间:2017-04-13 14:19:12

标签: java image javafx

即时尝试从文件系统加载图片,但我没有错误,也没有显示图片。该图像的文件位于Package文件夹../src/application/a.png,我尝试以不同的方式加载图像:

图片图片=新图片("文件:a.png");

图片image =新图片(新文件(" a.png")。toURI()。toString());

package application;

import java.io.File;

import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.effect.ColorAdjust;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.stage.Stage;

public class Main extends Application {

    @Override
    public void start(Stage stage) {

        Image image = new Image(new File("/a.png").toURI().toString());
        // Setting the image view
        ImageView imageView = new ImageView(image);
        // Setting the position of the image
        imageView.setX(0);
        imageView.setY(0);
        // setting the fit height and width of the image view
        imageView.setFitHeight(200);
        imageView.setFitWidth(400);
        // Setting the preserve ratio of the image view
        imageView.setPreserveRatio(true);



        // Creating a Group object
        Group root = new Group(imageView);

        // Creating a scene object
        Scene scene = new Scene(root, 600, 300);
        // Setting title to the Stage
        stage.setTitle("Coloradjust effect example");
        // Adding scene to the stage
        stage.setScene(scene);

        // Displaying the contents of the stage
        stage.show();
    }

    public static void main(String args[]) {
        launch(args);
    }
}

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

如果您要加载的图片与您的班级位于同一目录中,请尝试:

image = new Image(getClass()。getResourceAsStream(“a.png”))。

否则,如果它位于您的类所属目录的子目录中,请尝试:

image = new Image(getClass()。getResourceAsStream(“application / a.png”))。 鉴于您的项目结构是:

| ---- SRC

| ----主要

| --------应用

| -------- a.png