
A VideoFormat object contains information about a video format supported by the current video capture device.
This example illustrates how to obtain the first available video format.
[VB.NET]
Dim Fmt As VideoFormat Fmt = IcImagingControl1.VideoFormats(0)
[C#]
VideoFormat Fmt = ICImagingControl1.VideoFormats[0];
Namespace: TIS.Imaging
Introduced in IC Imaging Control 1.x
| Property | Description | ||
| BitsPerPixel | Returns the bits per pixel of the VideoFormat. The byte count per pixel is calculated by dividing the bits per pixel count by 8. |
||
| Height | Returns the height of the VideoFormat. |
||
| Name | Returns the name of the VideoFormat. |
||
| Width | Returns the width of the VideoFormat. |
||