Share via


PngLayer Constructors

Definition

Overloads

PngLayer()

Initializes a new instance of the PngLayer class.

PngLayer(String, String, String)

Initializes a new instance of the PngLayer class.

PngLayer()

Initializes a new instance of the PngLayer class.

public PngLayer ();
Public Sub New ()

Applies to

PngLayer(String, String, String)

Initializes a new instance of the PngLayer class.

public PngLayer (string width = default, string height = default, string label = default);
new Microsoft.Azure.Management.Media.Models.PngLayer : string * string * string -> Microsoft.Azure.Management.Media.Models.PngLayer
Public Sub New (Optional width As String = Nothing, Optional height As String = Nothing, Optional label As String = Nothing)

Parameters

width
String

The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in width as the input.

height
String

The height of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in height as the input.

label
String

The alphanumeric label for this layer, which can be used in multiplexing different video and audio layers, or in naming the output file.

Applies to