I'm not sure, but digging into the Image class wil...
# tornadofx
c
I'm not sure, but digging into the Image class will probably reveal some settings that can be applied after-the-fact with the ImageView object creation
a
I gave it a fresh look, and then I realized that these options were applied to
ImageView
, but not the image. I moved attributes to the
Image
tag and I've got the exact same result:
Copy code
<ImageView fx:id="logo" BorderPane.alignment="CENTER">
    <Image url="@../images/inverting_clipper_scope.png" requestedWidth="360.0" preserveRatio="true" smooth="true" />
</ImageView>
It's not possible to set these attributes from
SceneBuilder
though.