
- JavaFX - Environment
- JavaFX - Installation Using Netbeans
- JavaFX - Installation Using Eclipse
- JavaFX - Installation using Visual Studio Code
- JavaFX - Architecture
- JavaFX - Application
- JavaFX 2D Shapes
- JavaFX - 2D Shapes
- JavaFX - Drawing a Line
- JavaFX - Drawing a Rectangle
- JavaFX - Drawing a Rounded Rectangle
- JavaFX - Drawing a Circle
- JavaFX - Drawing an Ellipse
- JavaFX - Drawing a Polygon
- JavaFX - Drawing a Polyline
- JavaFX - Drawing a Cubic Curve
- JavaFX - Drawing a Quad Curve
- JavaFX - Drawing an Arc
- JavaFX - Drawing an SVGPath
- JavaFX Properties of 2D Objects
- JavaFX - Stroke Type Property
- JavaFX - Stroke Width Property
- JavaFX - Stroke Fill Property
- JavaFX - Stroke Property
- JavaFX - Stroke Line Join Property
- JavaFX - Stroke Miter Limit Property
- JavaFX - Stroke Line Cap Property
- JavaFX - Smooth Property
- Operations on 2D Objects
- JavaFX - 2D Shapes Operations
- JavaFX - Union Operation
- JavaFX - Intersection Operation
- JavaFX - Subtraction Operation
- JavaFX Path Objects
- JavaFX - Path Objects
- JavaFX - LineTo Path Object
- JavaFX - HLineTo Path Object
- JavaFX - VLineTo Path Object
- JavaFX - QuadCurveTo Path Object
- JavaFX - CubicCurveTo Path Object
- JavaFX - ArcTo Path Object
- JavaFX Color and Texture
- JavaFX - Colors
- JavaFX - Linear Gradient Pattern
- JavaFX - Radial Gradient Pattern
- JavaFX Text
- JavaFX - Text
- JavaFX Effects
- JavaFX - Effects
- JavaFX - Color Adjust Effect
- JavaFX - Color input Effect
- JavaFX - Image Input Effect
- JavaFX - Blend Effect
- JavaFX - Bloom Effect
- JavaFX - Glow Effect
- JavaFX - Box Blur Effect
- JavaFX - GaussianBlur Effect
- JavaFX - MotionBlur Effect
- JavaFX - Reflection Effect
- JavaFX - SepiaTone Effect
- JavaFX - Shadow Effect
- JavaFX - DropShadow Effect
- JavaFX - InnerShadow Effect
- JavaFX - Lighting Effect
- JavaFX - Light.Distant Effect
- JavaFX - Light.Spot Effect
- JavaFX - Point.Spot Effect
- JavaFX - DisplacementMap
- JavaFX - PerspectiveTransform
- JavaFX Transformations
- JavaFX - Transformations
- JavaFX - Rotation Transformation
- JavaFX - Scaling Transformation
- JavaFX - Translation Transformation
- JavaFX - Shearing Transformation
- JavaFX Animations
- JavaFX - Animations
- JavaFX - Rotate Transition
- JavaFX - Scale Transition
- JavaFX - Translate Transition
- JavaFX - Fade Transition
- JavaFX - Fill Transition
- JavaFX - Stroke Transition
- JavaFX - Sequential Transition
- JavaFX - Parallel Transition
- JavaFX - Pause Transition
- JavaFX - Path Transition
- JavaFX Images
- JavaFX - Images
- JavaFX 3D Shapes
- JavaFX - 3D Shapes
- JavaFX - Creating a Box
- JavaFX - Creating a Cylinder
- JavaFX - Creating a Sphere
- Properties of 3D Objects
- JavaFX - Cull Face Property
- JavaFX - Drawing Modes Property
- JavaFX - Material Property
- JavaFX Event Handling
- JavaFX - Event Handling
- JavaFX - Using Convenience Methods
- JavaFX - Event Filters
- JavaFX - Event Handlers
- JavaFX UI Controls
- JavaFX - UI Controls
- JavaFX - ListView
- JavaFX - Accordion
- JavaFX - ButtonBar
- JavaFX - ChoiceBox
- JavaFX - HTMLEditor
- JavaFX - MenuBar
- JavaFX - Pagination
- JavaFX - ProgressIndicator
- JavaFX - ScrollPane
- JavaFX - Separator
- JavaFX - Slider
- JavaFX - Spinner
- JavaFX - SplitPane
- JavaFX - TableView
- JavaFX - TabPane
- JavaFX - ToolBar
- JavaFX - TreeView
- JavaFX - Label
- JavaFX - CheckBox
- JavaFX - RadioButton
- JavaFX - TextField
- JavaFX - PasswordField
- JavaFX - FileChooser
- JavaFX - Hyperlink
- JavaFX - Tooltip
- JavaFX - Alert
- JavaFX - DatePicker
- JavaFX - TextArea
- JavaFX Charts
- JavaFX - Charts
- JavaFX - Creating Pie Chart
- JavaFX - Creating Line Chart
- JavaFX - Creating Area Chart
- JavaFX - Creating Bar Chart
- JavaFX - Creating Bubble Chart
- JavaFX - Creating Scatter Chart
- JavaFX - Creating Stacked Area Chart
- JavaFX - Creating Stacked Bar Chart
- JavaFX Layout Panes
- JavaFX - Layout Panes
- JavaFX - HBox Layout
- JavaFX - VBox Layout
- JavaFX - BorderPane Layout
- JavaFX - StackPane Layout
- JavaFX - TextFlow Layout
- JavaFX - AnchorPane Layout
- JavaFX - TilePane Layout
- JavaFX - GridPane Layout
- JavaFX - FlowPane Layout
- JavaFX CSS
- JavaFX - CSS
- Media with JavaFX
- JavaFX - Handling Media
- JavaFX - Playing Video
- JavaFX Useful Resources
- JavaFX - Quick Guide
- JavaFX - Useful Resources
- JavaFX - Discussion
JavaFX - MediaView getFitHeight() Method
In JavaFX, the getFitHeight() method in the MediaView class is used to retrieve the height of the bounding box of the resized media. By default, this method returns 0.0 if the value of 'fitHeight' is not set.
To retrieve the value of 'FitHeight' for the media, we should set the 'fitHeightProperty' by using the 'setFitHeight()' method. This allows us to specify the desired height of the media within the 'MediaView' bounding box. By setting the 'fitHeight' property, we ensure that the media is displayed at the intended height, and later on, we can retrieve this value using the 'getFitHeight()' method.
Syntax
Following is the syntax of the 'getFitHeight()' method of 'MediaView' class −
public final double getFitHeight()
Parameters
This method doesn't takes any parameters.
Return value
This method returns a double value that represents the height of the bounding box.
Example 1
Following is a basic example demonstrating the getFitHeight() method of 'MediaView' class −
In this example, we create an application that displays the video on the VBox. Then we displays the label for the fitHeight using the 'getFitHeight()' method.
import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.Group; import javafx.scene.media.Media; import javafx.scene.media.MediaPlayer; import javafx.scene.media.MediaView; import javafx.scene.control.Label; import javafx.scene.layout.VBox; import javafx.stage.Stage; import java.io.File; public class FitHeight extends Application { @Override public void start(Stage stage) { File mediaPath = new File("./audio_video/sampleTP.mp4"); Media media = new Media(mediaPath.toURI().toString()); MediaPlayer mediaPlayer = new MediaPlayer(media); // Create the MediaView and set fit height MediaView mediaView = new MediaView(mediaPlayer); mediaView.setFitHeight(240); // Create a VBox to hold the label and MediaView VBox root = new VBox(); Label fitHeightLabel = new Label("Fit height of the media: " + mediaView.getFitHeight()); root.getChildren().addAll(mediaView, fitHeightLabel); Scene scene = new Scene(root, 550, 280); stage.setScene(scene); stage.setTitle("Fit Height Example"); stage.show(); mediaPlayer.play(); } public static void main(String[] args) { launch(args); } }
Output
Following is the output of the code −

Example 2
In this example, we use the 'getFitHeight()' method to retrieve the value of the 'fitHeight' without setting it.
import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.Group; import javafx.scene.media.Media; import javafx.scene.media.MediaPlayer; import javafx.scene.media.MediaView; import javafx.scene.control.Label; import javafx.scene.layout.VBox; import javafx.stage.Stage; import java.io.File; public class FitHeight1 extends Application { @Override public void start(Stage stage) { File mediaPath = new File("./audio_video/sampleTP.mp4"); Media media = new Media(mediaPath.toURI().toString()); MediaPlayer mediaPlayer = new MediaPlayer(media); // Create the MediaView and set fit height MediaView mediaView = new MediaView(mediaPlayer); // Create a VBox to hold the label and MediaView VBox root = new VBox(); double fitheight = mediaView.getFitHeight(); System.out.println("Fit height of the media: " + fitheight); root.getChildren().add(mediaView); Scene scene = new Scene(root, 550, 280); stage.setScene(scene); stage.setTitle("Fit Height Example"); stage.show(); mediaPlayer.play(); } public static void main(String[] args) { launch(args); } }
Output
Following is the output of the code, which displays the 'fitHeight' on the console.
Fit height of the media: 0.0