StillFormatType Enumeration

Summary
Defines the format used to save still images using the CaptureCtrl.SaveStillBitmap, ConvertCtrl.SaveStillBitmap and PlayCtrl.SaveStillBitmap methods.
Syntax
C#
C++/CLI
public enum StillFormatType 
public enum class StillFormatType   
Members
ValueMemberDescription
0x00000000BMP Format is the normal Windows BMP format.
0x00000001CMP Format is LEAD's proprietary CMP format.
0x00000002JPEG444 Format is JPEG YUV 4:4:4 format.
0x00000003JPEG422 Format is JPEG YUV 4:2:2 format.
0x00000004JPEG411 Format is JPEG YUV 4:1:1 format.
0x00000005PSPTHM Format is PSP THM format.
Example
C#
using Leadtools; 
using Leadtools.MediaFoundation; 
using LeadtoolsMediaFoundationExamples.Fixtures; 
 
 
public CaptureCtrlForm _form = new CaptureCtrlForm(false); 
public CaptureCtrl _capturectrl = null; 
 
public bool _result = false; 
 
public void SaveStillBitmapExample() 
{ 
   // reference the capture control 
   _capturectrl = _form.CaptureCtrl; 
 
   // output file 
   string cmpFile = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_SaveStillBitmap.cmp"); 
 
   try 
   { 
      // select a video capture device 
      if (_capturectrl.VideoDevices["USB"] == null) 
         throw new Exception("No USB video device available"); 
 
      _capturectrl.VideoDevices["USB"].Selected = true; 
 
      // start the capture 
      _capturectrl.StartCapture(CaptureMode.Still); 
 
      // save the still image to a cmp file 
      _capturectrl.SaveStillBitmap(cmpFile, StillFormatType.CMP, (int)StillQuality.MC, 0, -1); 
 
      // stop the capture 
      _capturectrl.StopCapture(); 
 
      // check for the capture file and set the result 
      if (File.Exists(cmpFile)) 
         _result = true; 
   } 
   catch (Exception ex) 
   { 
      _result = false; 
   } 
} 
 
static class LEAD_VARS 
{ 
   public const string MediaDir = @"C:\LEADTOOLS23\Media"; 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.MediaFoundation Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.