CropArgs

data class CropArgs(val bottomPixels: Output<Int>? = null, val leftPixels: Output<Int>? = null, val rightPixels: Output<Int>? = null, val topPixels: Output<Int>? = null) : ConvertibleToJava<CropArgs>

Video cropping configuration for the input video. The cropped input video is scaled to match the output resolution.

Constructors

Link copied to clipboard
constructor(bottomPixels: Output<Int>? = null, leftPixels: Output<Int>? = null, rightPixels: Output<Int>? = null, topPixels: Output<Int>? = null)

Properties

Link copied to clipboard
val bottomPixels: Output<Int>? = null

The number of pixels to crop from the bottom. The default is 0.

Link copied to clipboard
val leftPixels: Output<Int>? = null

The number of pixels to crop from the left. The default is 0.

Link copied to clipboard
val rightPixels: Output<Int>? = null

The number of pixels to crop from the right. The default is 0.

Link copied to clipboard
val topPixels: Output<Int>? = null

The number of pixels to crop from the top. The default is 0.

Functions

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