VideoFrame 构造函数

定义

重载

VideoFrame(BitmapPixelFormat, Int32, Int32)

初始化 VideoFrame 类的新实例。

VideoFrame(BitmapPixelFormat, Int32, Int32, BitmapAlphaMode)

初始化 VideoFrame 类的新实例。

VideoFrame(BitmapPixelFormat, Int32, Int32)

初始化 VideoFrame 类的新实例。

public:
 VideoFrame(BitmapPixelFormat format, int width, int height);
 VideoFrame(BitmapPixelFormat const& format, int const& width, int const& height);
public VideoFrame(BitmapPixelFormat format, int width, int height);
function VideoFrame(format, width, height)
Public Sub New (format As BitmapPixelFormat, width As Integer, height As Integer)

参数

format
BitmapPixelFormat

视频帧的像素格式。

width
Int32

int

视频帧的宽度(以像素为单位)。

height
Int32

int

视频帧的高度(以像素为单位)。

另请参阅

适用于

VideoFrame(BitmapPixelFormat, Int32, Int32, BitmapAlphaMode)

初始化 VideoFrame 类的新实例。

public:
 VideoFrame(BitmapPixelFormat format, int width, int height, BitmapAlphaMode alpha);
 VideoFrame(BitmapPixelFormat const& format, int const& width, int const& height, BitmapAlphaMode const& alpha);
public VideoFrame(BitmapPixelFormat format, int width, int height, BitmapAlphaMode alpha);
function VideoFrame(format, width, height, alpha)
Public Sub New (format As BitmapPixelFormat, width As Integer, height As Integer, alpha As BitmapAlphaMode)

参数

format
BitmapPixelFormat

视频帧的像素格式。

width
Int32

int

视频帧的宽度(以像素为单位)。

height
Int32

int

视频帧的高度(以像素为单位)。

alpha
BitmapAlphaMode

视频帧的 alpha 模式。

另请参阅

适用于