Answered! Import javafx.application.Application:import javafx.scene.Scene:import javafx.scene.layout.HBox:import…

import javafx application. Application; import javafx scene Scene import javafx scene .layout.HBox: import javafx.scene layout. Pane import javafx geometry. Insets: import javafx. Stage Stage import java Ex.scene.image.Image: import javafx image ImageView public class Show Image extends Application @Override public void start (Stage primaryStage) Pane pane E new HBox (10) pane .set Padding (new Insets (5, 5, 5, 5) Image image. new Image (http://www.cs.armstrong.edu/liang/intro9e/book/image/us.gif); panes dre add (new Imageview (image) Imageview imageView2 new Imageview (image) image View2.setFitHeight (100) image View2.setFitwidth (100) pane.getChildren add (imageview2) Image View imageView3 new Image View (image) image View 3.setRotate (90) pane. get Children add (imageView3) Scene scene new Scene (pane) primary Stage. set Title (ShowImage) primary Stage.setScene (scene) primary Stage. show public static void main (String[] args) Application launch (args)4. Modify Listing 14.14 to use three different styles. Change the text that is displayed to something of your own creation. Copy and paste a screenshot of the results into your document. Show Image FIGURE I4.14 An image is displayed in three image views placed in a pane. The program creates an HBox (ine 140. An HBox is a pane that places all nodes horizon- tally in one row. The program creates an Image, and then an Imageview for displaying the iamge, and places the ImageView in the HBox (ine 17). The program creates the second ImageView (ine 19), sets its fitHeight and fitwidth properties (ines 20-21) and places the Imageview into the HBox (ine 22). The program cre- ates the third ImageView (ine 24), rotates it 90 degrees (ine 25), and places it into the HBox (ine 260. The setRotate method is defined in the Node class and can be used for any node. Note that an Image object can be shared by multiple nodes. In this case, it is shared by three Image View. However, a node such as ImageView cannot be shared. You cannot place an Imageview multiple times into a pane or scene. Note that you must place the image file in the same directory as the class file, as shown in the following figure. Directory Show Image .class image us gif If you use the URL to locate the image file, the URL protocal http:/l must be present. So the following code is wrong. new Image(www.cs.armstrong.edu/hiang/image/us.gif); It must be replaced by new Image( http://www.cs.armstrong.edu/liang/image/us.gif);

Import javafx.application.Application:import javafx.scene.Scene:import javafx.scene.layout.HBox:import javafx.scene.layout.Pane:import javafx.geometry.Insets: import javafx.stage.Stage:import j avafx.scene.image.Image:import javafx.scene.image.ImageView;| public class ShowImage extends Application{ @Override public void start(Stage primaryStage) { Pane pane = new HBox(10): pane.setPadding(new Insets(5,5,5,5)): Image image = new Image “http://www.cs.armstrong.edu/liang/intro9e/booJc/image/us.gif”) pane.getChildren (). add (new ImageView (image)):ImageView imageView2 = new ImageView(image):imageView2.setFitHeight(100):imageView2.setFitWidth(100):pane.getChildren().add(imageView2):ImageView imageView3 = new ImageView(image):imageView3.setRotate(90): pane.getChildren().add(imageView3): Scene scene = new Scene(pane):primaryStage.setTitle(“Showlmage”):primaryStage.setScene(scene):primaryStage.show(): } public static void main(String[] args){ Application.launch(args): } }

Expert Answer

 package sample;
import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.scene.image.*;
import javafx.scene.image.Image;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Pane;
import javafx.stage.Stage;


public class ShowImage extends Application {

    @Override
    public void start(Stage primaryStage) throws Exception{
Pane pane = new HBox(10);
pane.setPadding(new Insets(5,5,5,5));
        javafx.scene.image.Image image= new Image("sample/Image/us.gif");
        pane.getChildren().add(new ImageView(image));
        ImageView imageView2 = new ImageView(image);
        imageView2.setFitHeight(100);
        imageView2.setFitWidth(100);
        pane.getChildren().add(imageView2);
        ImageView imageView3= new ImageView(image);
        imageView3.setRotate(90);
        pane.getChildren().add(imageView3);
        Scene scene = new Scene(pane);
        primaryStage.setTitle("Show Image");
        primaryStage.setScene(scene);
        primaryStage.show();
    }


    public static void main(String[] args) {
        //launch(args);
        Application.launch(args);
    }
}

Directory structure:–>

output:–>

Still stressed from student homework?
Get quality assistance from academic writers!