ImageArgs

data class ImageArgs(val alpha: Output<Double>? = null, val resolution: Output<NormalizedCoordinateArgs>? = null, val uri: Output<String>) : ConvertibleToJava<ImageArgs>

Overlaid image.

Constructors

Link copied to clipboard
constructor(alpha: Output<Double>? = null, resolution: Output<NormalizedCoordinateArgs>? = null, uri: Output<String>)

Properties

Link copied to clipboard
val alpha: Output<Double>? = null

Target image opacity. Valid values are from 1.0 (solid, default) to 0.0 (transparent), exclusive. Set this to a value greater than 0.0.

Link copied to clipboard

Normalized image resolution, based on output video resolution. Valid values: 0.01.0. To respect the original image aspect ratio, set either x or y to 0.0. To use the original image resolution, set both x and y to 0.0.

Link copied to clipboard
val uri: Output<String>

URI of the image in Cloud Storage. For example, gs://bucket/inputs/image.png. Only PNG and JPEG images are supported.

Functions

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