Captures a video image to a System.Drawing.Image object.
public virtual Image CaptureImage() Public Overridable Function CaptureImage() As Image public:virtual Image^ CaptureImage();
The captured video image as a System.Drawing.Image.
This method will capture a video image to a System.Drawing.Image object. If the method fails, an error is raised. For more information, refer to the Error Codes.
Note: Internally this method calls StartCapture with the capture mode set to CaptureMode.Still. It then waits for the current capture delay setting specified by CaptureStillDelay before capturing the still picture. Finally, it stops the session by calling StopCapture.
using Leadtools;using Leadtools.MediaFoundation;using LeadtoolsMediaFoundationExamples.Fixtures;public bool _result = false;public CaptureCtrlForm _form = new CaptureCtrlForm();public void CaptureImageExample(){// reference the capture controlCaptureCtrl capturectrl = _form.CaptureCtrl;string inFile = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_Source.avi");string outFile = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_CaptureImageExample.jpg");try{// set the video capture device, use your capture device name hereif (capturectrl.VideoDevices["USB"] == null)throw new Exception("No USB video device available");capturectrl.VideoDevices["USB"].Selected = true;// capture the imageImage image = capturectrl.CaptureImage();if (image != null)image.Save(outFile, ImageFormat.Jpeg);// stop the capturecapturectrl.StopCapture();// check for the capture file and set the resultif (File.Exists(Path.Combine(Directory.GetCurrentDirectory(), outFile)))_result = true;}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();}public void CaptureImage_Helper(object sender, EventArgs e){// set result_result = true;}static class LEAD_VARS{public const string MediaDir = @"C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 20\Media";}
Imports LeadtoolsImports Leadtools.MediaFoundationImports LeadtoolsMediaFoundationExamples.FixturesPublic _result As Boolean = FalsePublic _form As New CaptureCtrlForm()Public Sub CaptureImageExample()' reference the capture controlDim capturectrl As CaptureCtrl = _form.CaptureCtrlDim inFile As String = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_Source.avi")Dim outFile As String = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_CaptureImageExample.jpg")Try' set the video capture device, use your capture device name hereIf capturectrl.VideoDevices("USB") Is Nothing ThenThrow New Exception("No USB video device available")End Ifcapturectrl.VideoDevices("USB").Selected = True' capture the imageDim image As Image = capturectrl.CaptureImage()If image IsNot Nothing Thenimage.Save(outFile, ImageFormat.Jpeg)End If' stop the capturecapturectrl.StopCapture()' check for the capture file and set the resultIf File.Exists(Path.Combine(Directory.GetCurrentDirectory(), outFile)) Then_result = TrueEnd IfCatch 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 SubPublic Sub CaptureImage_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 20\Media"End Class
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
