VideoCaptureEventArgs Constructor (IntPtr,Byte[], Int32, Int32, Int32) |
Namespace: Ozeki.MediaAssembly: OzekiSDK (in OzekiSDK.dll) Version: 1.8.12.0 (1.8.12)
Syntaxpublic VideoCaptureEventArgs(
IntPtr buffer,
byte[] data,
int width,
int height,
int stride
)
Public Sub New (
buffer As IntPtr,
data As Byte(),
width As Integer,
height As Integer,
stride As Integer
)
public:
VideoCaptureEventArgs(
IntPtr buffer,
array<unsigned char>^ data,
int width,
int height,
int stride
)
new :
buffer : IntPtr *
data : byte[] *
width : int *
height : int *
stride : int -> VideoCaptureEventArgs
Parameters
- buffer
- Type: System.IntPtr
Pointer to a buffer that contains the sample data. - data
- Type:System.Byte[]
The byte array that contains the sample data. - width
- Type: System.Int32
The width of the captured image (in pixels). - height
- Type: System.Int32
The height of the captured image (in pixels). - stride
- Type: System.Int32
See Also