Shadow class is a part of JavaFX. Shadow class creates a monochromatic shadow with blurry edges. The Shadow is of black Color (by default) and can be combined with the original to create a shadow. The Shadow of different color can be added with original to create a Glow effect. Shadow class inherits Effect class.
Constructors of the class:
- Shadow(): Creates a new Shadow object.
- Shadow(BlurType t, Color c, double r): Creates a new Shadow Object with specified blur type, color, and radius.
- Shadow(double r, Color c): Creates a new Shadow Object with radius and color.
Commonly Used Methods:
| Method | Explanation |
|---|---|
| getBlurType() | Returns the blur type of the effect. |
| getColor() | Returns the color of the effect. |
| getInput() | Returns the value of property input. |
| getRadius() | Returns the radius of the Shadow effect. |
| setBlurType(BlurType v) | Sets the blur type of the Shadow effect. |
| setColor(Color v) | Sets the Color of the Shadow effect. |
| setInput(Effect v) | Sets the value of the property input. |
| setRadius(double v) | Sets the Radius of the shadow effect. |
Below programs illustrate the use of Shadow class:
- Java program to create a Circle and add Shadow effect to it: In this program we will create a Circle named circle and create a Shadow effect shadow with specified radius and color. The shadow effect will be added to the circle using the setEffect() function and the circle will be added to the group. The circles will be translated to specific position in the stage using setTranslateX() and setTranslateY() function. The group will be added to the scene and the scene will be added to the stage.
// Java program to create a CircleÂ// and add Shadow effect to itimportjavafx.application.Application;importjavafx.scene.Scene;importjavafx.scene.control.*;importjavafx.scene.layout.*;importjavafx.stage.Stage;importjavafx.scene.image.*;importjavafx.scene.effect.*;importjava.io.*;importjavafx.scene.shape.Circle;importjavafx.scene.paint.Color;importjavafx.scene.Group;ÂÂpublicclassshadow_1extendsApplication {   Â// launch the application   Âpublicvoidstart(Stage stage)throwsException   Â{       Â// set title for the stage       Âstage.setTitle("shadow example");       Â// create a circle       ÂCircle circle =newCircle(50.0f,50.0f,25.0f);       Â// translate to a position       Âcircle.setTranslateX(50.0f);       Âcircle.setTranslateY(50.0f);       Â// create a shadow effect       ÂShadow shadow =newShadow(10, Color.RED);       Â// set effect       Âcircle.setEffect(shadow);       Â// create a Group       ÂGroup group =newGroup(circle);       Â// create a scene       ÂScene scene =newScene(group,200,200);       Â// set the scene       Âstage.setScene(scene);       Âstage.show();   Â}   Â// Main Method   Âpublicstaticvoidmain(String args[])   Â{       Â// launch the application       Âlaunch(args);   Â}}Output:
- Java program to create four Circles and add Shadow effect to it( of different BlurType): In this program we will create a Circles named circle, circle1, circle2, circle3 and create a Shadow effects named shadow1, shadow2, shadow3, shadow4 with specified radius, color and blur type. The shadow effect will be added to the circle using the setEffect() function and the circles will be added to the group.The circles will be translated to specific position in the stage using setTranslateX() and setTranslateY() function. The group will be added to the scene and the scene will be added to the stage.
// Java program to create four Circles and add Shadow// effect to it which are of different BlurTypeimportjavafx.application.Application;importjavafx.scene.Scene;importjavafx.scene.control.*;importjavafx.scene.layout.*;importjavafx.stage.Stage;importjavafx.scene.image.*;importjavafx.scene.effect.*;importjava.io.*;importjavafx.scene.shape.Circle;importjavafx.scene.paint.Color;importjavafx.scene.Group;ÂÂpublicclassshadow_2extendsApplication {   Â// launch the application   Âpublicvoidstart(Stage stage)throwsException   Â{       Â// set title for the stage       Âstage.setTitle("shadow example");       Â// create a circle       ÂCircle circle =newCircle(0.0f,0.0f,25.0f);       ÂCircle circle1 =newCircle(0.0f,0.0f,25.0f);       ÂCircle circle2 =newCircle(0.0f,0.0f,25.0f);       ÂCircle circle3 =newCircle(0.0f,0.0f,25.0f);       Â// translate to a position       Âcircle.setTranslateX(50.0f);       Âcircle.setTranslateY(50.0f);       Â// translate to a position       Âcircle1.setTranslateX(150.0f);       Âcircle1.setTranslateY(50.0f);       Â// translate to a position       Âcircle2.setTranslateX(50.0f);       Âcircle2.setTranslateY(150.0f);       Â// translate to a position       Âcircle3.setTranslateX(150.0f);       Âcircle3.setTranslateY(150.0f);       Â// create shadow effect       ÂShadow shadow1 =newShadow(BlurType.values()[0], Color.BLUE,10);       ÂShadow shadow2 =newShadow(BlurType.values()[1], Color.BLUE,10);       ÂShadow shadow3 =newShadow(BlurType.values()[2], Color.BLUE,10);       ÂShadow shadow4 =newShadow(BlurType.values()[3], Color.BLUE,10);       Â// set effect       Âcircle.setEffect(shadow1);       Âcircle1.setEffect(shadow2);       Âcircle2.setEffect(shadow3);       Âcircle3.setEffect(shadow4);       Â// create a Group       ÂGroup group =newGroup(circle, circle1, circle2, circle3);       Â// create a scene       ÂScene scene =newScene(group,200,200);       Â// set the scene       Âstage.setScene(scene);       Âstage.show();   Â}   Â// Main Method   Âpublicstaticvoidmain(String args[])   Â{       Â// launch the application       Âlaunch(args);   Â}}Output:
Note: The above programs might not run in an online IDE. Please use an offline compiler.
Reference: https://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Shadow.html

