JavaFX | Shadow Class

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 applicationpublicvoidstart(Stage stage)throwsException{// set title for the stagestage.setTitle("shadow example");// create a circleCircle circle =newCircle(50.0f,50.0f,25.0f);// translate to a positioncircle.setTranslateX(50.0f);circle.setTranslateY(50.0f);// create a shadow effectShadow shadow =newShadow(10, Color.RED);// set effectcircle.setEffect(shadow);// create a GroupGroup group =newGroup(circle);// create a sceneScene scene =newScene(group,200,200);// set the scenestage.setScene(scene);stage.show();}// Main Methodpublicstaticvoidmain(String args[]){// launch the applicationlaunch(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 applicationpublicvoidstart(Stage stage)throwsException{// set title for the stagestage.setTitle("shadow example");// create a circleCircle 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 positioncircle.setTranslateX(50.0f);circle.setTranslateY(50.0f);// translate to a positioncircle1.setTranslateX(150.0f);circle1.setTranslateY(50.0f);// translate to a positioncircle2.setTranslateX(50.0f);circle2.setTranslateY(150.0f);// translate to a positioncircle3.setTranslateX(150.0f);circle3.setTranslateY(150.0f);// create shadow effectShadow 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 effectcircle.setEffect(shadow1);circle1.setEffect(shadow2);circle2.setEffect(shadow3);circle3.setEffect(shadow4);// create a GroupGroup group =newGroup(circle, circle1, circle2, circle3);// create a sceneScene scene =newScene(group,200,200);// set the scenestage.setScene(scene);stage.show();}// Main Methodpublicstaticvoidmain(String args[]){// launch the applicationlaunch(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




