ImagePattern

ImagePattern paint allows us to have an image filling a shape:

// chapter2/paint/ImagePatternDemo.javaStackPane root = new StackPane();root.getChildren().add(     new Circle(100,         new ImagePattern(              new Image( "https://upload.wikimedia.org/wikipedia/commons/3/3f/Chimpanzee_congo_painting.jpg"                   )));

The output is as follows:

Get Mastering JavaFX 10 now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.