В
/*
File file = new File(DataHolder.getSettings().getProductImgFolder() + "/" + "cabbage.png");
Image image = new Image(file.toURI().toString());
ImageView imageView = new ImageView();
imageView.setSmooth(true);
imageView.setCache(true);
imageView.setFitHeight(imgSize);
imageView.setCacheHint(CacheHint.SPEED);
imageView.setPreserveRatio(true);
imageView.setImage(image);
StackPane.setAlignment(imageView, Pos.CENTER);
stackPane.getChildren().add(imageView);*/