public string SaveProfileEx(
WMProfile Profile,
WMProfileType Flags
)
public:
String^ SaveProfileEx(
WMProfile^ Profile,
WMProfileType Flags
)
Profile
A WMProfile object containing the profile information to save.
Flags
A WMProfileType enumeration value specifying default or system profile.
Saves a WMProfile to a string and returns that string to the user.
using Leadtools;
using Leadtools.Multimedia;
using LeadtoolsMultimediaExamples.Fixtures;
public bool _result = false;
public ConvertCtrlForm _form = new ConvertCtrlForm();
public void RemoveMutualExclusionExample()
{
ConvertCtrl convertctrl = _form.ConvertCtrl;
string inWMProfile = Path.Combine(LEAD_VARS.MediaDir, "WMCustomProfile.xml");
string outWMProfile = Path.Combine(LEAD_VARS.MediaDir, "WMCustomProfile_NoMutualExclusion.xml");
try
{
WMProfileManager manager = new WMProfileManager();
// load the custom profile
convertctrl.WMProfile = manager.LoadProfileByData(File.ReadAllText(inWMProfile));
// remove mutual exclusion from the profile
WMMutualExclusion excl = convertctrl.WMProfile.GetMutualExclusion(0);
convertctrl.WMProfile.RemoveMutualExclusion(excl);
// save the profile
File.WriteAllText(outWMProfile, manager.SaveProfileEx(convertctrl.WMProfile, WMProfileType.Default));
_result = true;
// dispose of the manager
manager.Dispose();
}
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();
}
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