RectangleArgs

data class RectangleArgs(val height: Output<String>? = null, val left: Output<String>? = null, val top: Output<String>? = null, val width: Output<String>? = null) : ConvertibleToJava<RectangleArgs>

Describes the properties of a rectangular window applied to the input media before processing it.

Constructors

Link copied to clipboard
constructor(height: Output<String>? = null, left: Output<String>? = null, top: Output<String>? = null, width: Output<String>? = null)

Properties

Link copied to clipboard
val height: Output<String>? = null

The height of the rectangular region in pixels. This can be absolute pixel value (e.g 100), or relative to the size of the video (For example, 50%).

Link copied to clipboard
val left: Output<String>? = null

The number of pixels from the left-margin. This can be absolute pixel value (e.g 100), or relative to the size of the video (For example, 50%).

Link copied to clipboard
val top: Output<String>? = null

The number of pixels from the top-margin. This can be absolute pixel value (e.g 100), or relative to the size of the video (For example, 50%).

Link copied to clipboard
val width: Output<String>? = null

The width of the rectangular region in pixels. This can be absolute pixel value (e.g 100), or relative to the size of the video (For example, 50%).

Functions

Link copied to clipboard
open override fun toJava(): RectangleArgs