Class ImageOverlaySettings
- Namespace
- VisioForge.Core.Types.X.VideoEffects
- Assembly
- VisioForge.Core.dll
Image overlay settings.
public class ImageOverlaySettingsInheritance
Inherited Members
Constructors
ImageOverlaySettings(string)
Initializes a new instance of the VisioForge.Core.Types.X.VideoEffects.ImageOverlaySettings class.
public ImageOverlaySettings(string filename)Parameters
filenamestring-
The filename.
ImageOverlaySettings(byte[])
Initializes a new instance of the VisioForge.Core.Types.X.VideoEffects.ImageOverlaySettings class.
public ImageOverlaySettings(byte[] data)Parameters
databyte[]-
The image (PNG, GIF, BMP or JPEG) as data.
ImageOverlaySettings(nint, int)
Initializes a new instance of the VisioForge.Core.Types.X.VideoEffects.ImageOverlaySettings class.
public ImageOverlaySettings(nint data, int dataSize)Parameters
Properties
Alpha
Gets or sets the alpha transparency value (0.0 to 1.0).
public double Alpha { get; set; }Property Value
Data
Gets the data.
public byte[] Data { get; set; }Property Value
- byte[]
Filename
Gets the filename.
public string Filename { get; set; }Property Value
Height
Gets or sets the height.
public int Height { get; set; }Property Value
Width
Gets or sets the width.
public int Width { get; set; }Property Value
X
Gets or sets the X coordinate position of the image overlay.
public int X { get; set; }Property Value
Y
Gets or sets the Y coordinate position of the image overlay.
public int Y { get; set; }