Loads some or all of the convert object settings from a stream.
public virtual void LoadSettingsFromStream(Stream sourceStream,ConvertSettings flags)
Public Overridable Sub LoadSettingsFromStream( _ByVal sourceStream As Stream, _ByVal flags As ConvertSettings _)
public:virtual void LoadSettingsFromStream(Stream^ sourceStream,ConvertSettings flags)
sourceStream
The Stream from which settings will be loaded.
flags
The settings flags specifying which settings to load. See the ConvertSettings enumeration for settings options.
Loads some or all of the convert object settings from a stream. This reconstructs the conversion configuration based on the settings saved to the stream. The convert object's settings can be saved to a stream by calling SaveSettingsToStream. Settings can be saved to a file by calling SaveSettingsToFile. Settings saved to a file can be loaded using LoadSettingsFromFile.
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.Fixtures;public bool _result = false;public ConvertCtrlForm _form = new ConvertCtrlForm();public ConvertCtrl _convertctrl;public string _streamSettings = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_ObjectSettingsExample_Stream.xml");public string _fileSettings = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_ObjectSettingsExample.xml");public void ObjectSettingsExample(){// reference the play control_convertctrl = _form.ConvertCtrl;// input and output filesstring inFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi");string outFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_ObjectSettingsExample.avi");try{Processor pVideoDizzy = _convertctrl.VideoProcessors.EFXDizzy;// set a video processor_convertctrl.SelectedVideoProcessors.Add(pVideoDizzy);// save the settings to a fileif (SaveFileSettings()){// now clear the selected processors again_convertctrl.SelectedVideoProcessors.Clear();// check whether stream file existsif (File.Exists(_fileSettings)){// load the saved settings from a file// and check whether the processor is selected againLoadFileSettings();// set the result_result = _convertctrl.SelectedVideoProcessors.Contains(pVideoDizzy);}}// save the settings to a streamif (SaveStreamSettings()){// now clear the selected processors again_convertctrl.SelectedVideoProcessors.Clear();// check whether the stream file existsif (File.Exists(_streamSettings)){// load the saved settings from a stream// and check whether the processor is selected againLoadStreamSettings();// set the result_result &= _convertctrl.SelectedVideoProcessors.Contains(pVideoDizzy);}}}catch (Exception){_result = false;}}private void LoadFileSettings(){_convertctrl.LoadSettingsFromFile(_fileSettings, ConvertSettings.Processors);}private bool SaveFileSettings(){// check whether we can save the processors settingsif (_convertctrl.CanSaveObjectSettings(ConvertSettings.Processors)){_convertctrl.SaveSettingsToFile(_fileSettings, ConvertSettings.Processors);return true;}return false;}private void LoadStreamSettings(){Stream settings = new StreamReader(_streamSettings).BaseStream;_convertctrl.LoadSettingsFromStream(settings, ConvertSettings.Processors);settings.Close();}private bool SaveStreamSettings(){// check whether we can save the processors settingsif (_convertctrl.CanSaveObjectSettings(ConvertSettings.Processors)){Stream settings = new StreamWriter(_streamSettings, false).BaseStream;_convertctrl.SaveSettingsToStream(settings, ConvertSettings.Processors);settings.Close();return true;}return false;}static class LEAD_VARS{public const string MediaDir = @"C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 20\Media";}
Imports LeadtoolsImports Leadtools.MultimediaImports LeadtoolsMultimediaExamples.FixturesPublic _result As Boolean = FalsePublic _form As ConvertCtrlForm = New ConvertCtrlForm()Public _convertctrl As ConvertCtrlPublic _streamSettings As String = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_ObjectSettingsExample_Stream.xml")Public _fileSettings As String = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_ObjectSettingsExample.xml")Public Sub ObjectSettingsExample()' reference the play control_convertctrl = _form.ConvertCtrl' input and output filesDim inFile As String = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi")Dim outFile As String = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_ObjectSettingsExample.avi")TryDim pVideoDizzy As Processor = _convertctrl.VideoProcessors.EFXDizzy' set a video processor_convertctrl.SelectedVideoProcessors.Add(pVideoDizzy)' save the settings to a fileIf SaveFileSettings() Then' now clear the selected processors again_convertctrl.SelectedVideoProcessors.Clear()' check if a stream file existsIf File.Exists(_fileSettings) Then' load the saved settings from a file' and check if the processor is selected againLoadFileSettings()' set the result_result = _convertctrl.SelectedVideoProcessors.Contains(pVideoDizzy)End IfEnd If' save the settings to a streamIf SaveStreamSettings() Then' now clear the selected processors again_convertctrl.SelectedVideoProcessors.Clear()' check if a stream file existsIf File.Exists(_streamSettings) Then' load the saved settings from a stream' and check if the processor is selected againLoadStreamSettings()' set the result_result = _result And _convertctrl.SelectedVideoProcessors.Contains(pVideoDizzy)End IfEnd IfCatch e1 As Exception_result = FalseEnd TryEnd SubPrivate Sub LoadFileSettings()_convertctrl.LoadSettingsFromFile(_fileSettings, ConvertSettings.Processors)End SubPrivate Function SaveFileSettings() As Boolean' check if we can save the processor's settingsIf _convertctrl.CanSaveObjectSettings(ConvertSettings.Processors) Then_convertctrl.SaveSettingsToFile(_fileSettings, ConvertSettings.Processors)Return TrueEnd IfReturn FalseEnd FunctionPrivate Sub LoadStreamSettings()Dim settings As Stream = New StreamReader(_streamSettings).BaseStream_convertctrl.LoadSettingsFromStream(settings, ConvertSettings.Processors)settings.Close()End SubPrivate Function SaveStreamSettings() As Boolean' check if we can save the processors settingsIf _convertctrl.CanSaveObjectSettings(ConvertSettings.Processors) ThenDim settings As Stream = New StreamWriter(_streamSettings, False).BaseStream_convertctrl.SaveSettingsToStream(settings, ConvertSettings.Processors)settings.Close()Return TrueEnd IfReturn FalseEnd FunctionPublic 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
