public virtual bool EnableStillCapture { get; set; }
true if still images can be captured during conversion; false, otherwise.
The default value for this property is false. To capture still images during conversion, the user must set the value of this property to true before calling the SaveStillBitmap method. Use the StillCaptureLimit property to get or set the time limit, in milliseconds, for capturing a still image. Use the SaveStillBitmap method to save a bitmap snapshot from the running stream to a file.
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.Fixtures;public bool _result = false;public ConvertCtrlForm _form = new ConvertCtrlForm();public ConvertCtrl _convertctrl = null;public string _bmpFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_SaveStillBitmap.bmp");public void SaveStillBitmapExample(){// input and output file namesstring inFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi");string outFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_SaveStillBitmapExample.mpg");try{// reference the convert control_convertctrl = _form.ConvertCtrl;// set a timer on the form to make the still bitmap_form.TestTimer.Interval = 5000;_form.TestTimer.Tick += new EventHandler(SaveStillBitmap_Helper);// enable still capture_convertctrl.EnableStillCapture = true;// set the time window limit for capture of stills (ms)_convertctrl.StillCaptureLimit = 100000;// set the compressor to DVVideo_convertctrl.VideoCompressors.DVVideo.Selected = true;// set the source and target files_convertctrl.SourceFile = inFile;_convertctrl.TargetFile = outFile;// convert it now!_convertctrl.StartConvert();// now start the test timer for the still capture_form.TestTimer.Start();}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 (_convertctrl.State == ConvertState.Running)Application.DoEvents();}public void SaveStillBitmap_Helper(object sender, EventArgs e){// cancel the timer_form.TestTimer.Stop();// try to simulate an error condition_convertctrl.SaveStillBitmap(_bmpFile, StillFormatType.BMP, 0, 0, -1);// check for the capture file and set the resultif (File.Exists(Path.Combine(Directory.GetCurrentDirectory(), _bmpFile)))_result = true;}static class LEAD_VARS{public const string MediaDir = @"C:\LEADTOOLS23\Media";}
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
