C#
VB
C++
Captures a single frame during a CaptureMode.ManualFrames mode capture.
public virtual void CaptureFrame() Public Overridable Sub CaptureFrame() public:virtual void CaptureFrame();
If the method fails, an error will be raised. For more information, refer to the Error Codes.
using Leadtools;using Leadtools.MediaFoundation;using LeadtoolsMediaFoundationExamples.Fixtures;public bool _result = false;public CaptureCtrlForm _form = new CaptureCtrlForm();public void CaptureFrameExample(){// reference the capture controlCaptureCtrl capturectrl = _form.CaptureCtrl;// output filestring outFile = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_CaptureFrameExample.bmp");try{// set the video capture device, use your capture device name hereif (capturectrl.VideoDevices["Logitech"] == null)throw new Exception("No Logitech video device available");capturectrl.VideoDevices["Logitech"].Selected = true;capturectrl.TargetFormat = TargetFormatType.MP4;// prepare the manual frames capturecapturectrl.ReadyCapture(CaptureMode.ManualFrames);// do something before the capture startsif (capturectrl.IsModeAvailable(CaptureMode.ManualFrames)){}// set the capture mode to manual framescapturectrl.StartCapture(CaptureMode.ManualFrames);// capture a framecapturectrl.CaptureFrame();// stop the capturecapturectrl.StopCapture();// check for the capture file and set the resultif (File.Exists(outFile)){Image test = Bitmap.FromFile(outFile);_result = true;}}catch (COMException){_result = false;}catch (Exception){_result = false;}// we'll loop on the state and pump messages for this example.// but you should not need to if running from a Windows Forms application.while (capturectrl.State == CaptureState.Running)Application.DoEvents();}private PixelFormat FormatFromBitCount(int bitCount){switch (bitCount){case 8:return PixelFormat.Format8bppIndexed;case 16:return PixelFormat.Format16bppRgb555;case 32:return PixelFormat.Format32bppRgb;case 48:return PixelFormat.Format48bppRgb;case 24:return PixelFormat.Format24bppRgb;}throw new Exception("Unrecognized bit count");}private int GetBitmapSize(Bitmap bmp, int bitCount){int pixelSize = (int)Math.Log((double)bitCount);return (bmp.Width * pixelSize + pixelSize & ~3) * bmp.Height;}private int GetBitmapScanRowSize(int bmpSize, int stride, int width){return bmpSize / (stride / width);}public void CaptureFrame_Helper(object sender, EventArgs e){// set result_result = true;}static class LEAD_VARS{public const string MediaDir = @"C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 19\Media";}
Imports LeadtoolsImports Leadtools.MediaFoundationImports LeadtoolsMediaFoundationExamples.FixturesPublic _result As Boolean = FalsePublic _form As New CaptureCtrlForm()Public Sub CaptureFrameExample()' reference the capture controlDim capturectrl As CaptureCtrl = _form.CaptureCtrl' output fileDim outFile As String = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_CaptureFrameExample.bmp")Try' set the video capture device, use your capture device name hereIf capturectrl.VideoDevices("Logitech") Is Nothing ThenThrow New Exception("No Logitech video device available")End Ifcapturectrl.VideoDevices("Logitech").Selected = Truecapturectrl.TargetFormat = TargetFormatType.MP4' prepare the manual frames capturecapturectrl.ReadyCapture(CaptureMode.ManualFrames)' do something before the capture startsIf capturectrl.IsModeAvailable(CaptureMode.ManualFrames) ThenEnd If' set the capture mode to manual framescapturectrl.StartCapture(CaptureMode.ManualFrames)' capture a framecapturectrl.CaptureFrame()' stop the capturecapturectrl.StopCapture()' check for the capture file and set the resultIf File.Exists(outFile) ThenDim test As Image = Bitmap.FromFile(outFile)_result = TrueEnd IfCatch generatedExceptionName As COMException_result = FalseCatch generatedExceptionName As Exception_result = FalseEnd Try' we'll loop on the state and pump messages for this example.' but you should not need to if running from a Windows Forms application.While capturectrl.State = CaptureState.RunningApplication.DoEvents()End WhileEnd SubPrivate Function FormatFromBitCount(ByVal bitCount As Integer) As PixelFormatSelect Case bitCountCase 8Return PixelFormat.Format8bppIndexedCase 16Return PixelFormat.Format16bppRgb555Case 32Return PixelFormat.Format32bppRgbCase 48Return PixelFormat.Format48bppRgbCase 24Return PixelFormat.Format24bppRgbEnd SelectThrow New Exception("Unrecognized bit count")End FunctionPrivate Function GetBitmapSize(ByVal bmp As Bitmap, ByVal bitCount As Integer) As IntegerDim pixelSize As Integer = CInt(Math.Log(CDbl(bitCount)))Return (bmp.Width * pixelSize + pixelSize And Not 3) * bmp.HeightEnd FunctionPrivate Function GetBitmapScanRowSize(ByVal bmpSize As Integer, ByVal stride As Integer, ByVal width As Integer) As IntegerReturn bmpSize / (stride / width)End FunctionPublic Sub CaptureFrame_Helper(ByVal sender As Object, ByVal e As EventArgs)' set result_result = TrueEnd SubPublic NotInheritable Class LEAD_VARSPublic Const MediaDir As String = "C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 19\Media"End Class
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
