I have a javafx.scene.image.Image
, and I would like to resize it, e.g. scaling it by a given factor. How to do that (without converting to BufferedImage
), and what are the options regarding quality and performance (such as interpolation types)?
There are several questions that look similar, but I couldn't find anybody who asked the same thing. The key point is that the input is an Image
object (and scaling factor) and the desired output is another Image
object.