Show / Hide Table of Contents

Class WatermarkFilter

WatermarkFilter

Inheritance
System.Object
BitmovinResponse
BitmovinResource
Filter
WatermarkFilter
Inherited Members
BitmovinResource.Name
BitmovinResource.Description
BitmovinResource.CreatedAt
BitmovinResource.ModifiedAt
BitmovinResource.CustomData
BitmovinResponse.Id
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Bitmovin.Api.Sdk.Models
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class WatermarkFilter : Filter

Properties

Bottom

Distance from the bottom edge of the input video to the bottom edge of the watermark image. May not be set if 'top' is set.

Declaration
public int? Bottom { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Image

URL of the file to be used as watermark image. Supported image formats: PNG, JPEG, BMP, GIF (required)

Declaration
public string Image { get; set; }
Property Value
Type Description
System.String

Left

Distance from the left edge of the input video to the left edge of the watermark image. May not be set if 'right' is set.

Declaration
public int? Left { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Right

Distance from the right edge of the input video to the right edge of the watermark image . May not be set if 'left' is set.

Declaration
public int? Right { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Top

Distance from the top edge of the input video to the top edge of the watermark image. May not be set if 'bottom' is set.

Declaration
public int? Top { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Unit

Specifies if the values of 'left', 'right', 'top' and 'bottom' are interpreted as pixels or as a percentage of the input video's dimensions.

Declaration
public PositionUnit? Unit { get; set; }
Property Value
Type Description
System.Nullable<PositionUnit>
Back to top Generated by DocFX