Too much questions today, but still :slightly_smil...
# tornadofx
a
Too much questions today, but still 🙂 I found that loading images directly from FXML (even with smooth=true) gives worse quality then instantiating them from the code directly, i.e.
Copy code
val iv: ImageView = scene.lookup("#logo") as ImageView
iv.image = Image(App::class.java.getResourceAsStream("/images/inverting_clipper_scope.png"), 360.0, 0.0, true, true)
gives better result than
Copy code
<ImageView fx:id="logo" fitWidth="360.0" preserveRatio="true" smooth="true" BorderPane.alignment="CENTER">
    <Image url="@../images/inverting_clipper_scope.png"/>
</ImageView>