Class EnhancedWatermarkFilter
EnhancedWatermarkFilter
Inherited Members
Namespace: Bitmovin.Api.Sdk.Models
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class EnhancedWatermarkFilter : 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 double? Bottom { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Height
Desired height of the watermark image, the unit of the parameter is specified separately by the parameter 'unit'. If both width and height are set the watermark size is fixed. If only one is set the aspect ratio of the image will be used to rescale it
Declaration
public double? Height { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
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 double? Left { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Opacity
Opacity to apply on the watermark image. Valid values are from 0.0 (completely transparent) to 1.0 (not transparent at all)
Declaration
public double? Opacity { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
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 double? Right { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
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 double? Top { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Unit
Unit
Declaration
public PositionUnit? Unit { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<PositionUnit> |
Width
Desired width of the watermark image, the unit of the parameter is specified separately by the parameter 'unit'. If both width and height are set the watermark size is fixed. If only one is set the aspect ratio of the image will be used to rescale it
Declaration
public double? Width { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |