public void SaveOptions(string fileName)
fileName
The name of XML file to save the options to.
To load the options saved into a disk file by the SaveOptions(string) method, use LoadOptions(string).
To load and save the options to an XML stream instead of a file, use LoadOptions(Stream) and SaveOptions(Stream).
Saving the options to an XML file allows the options to be set the required way once and then re-used in multiple sessions (or multiple DocumentWriter instances). Each document format supported by the LEADTOOLS Document Writer contain extra functionality and options that can be accessed with the GetOptions and SetOptions methods. For more information, refer to DocumentOptions.
The following options are saved to the XML:
The following options are saved to the XML:
This example will change some of the options in a DocumentWriter object, saves them to disk and then re-load them in a new instance.
using Leadtools;using Leadtools.Codecs;using Leadtools.Document.Writer;using Leadtools.Ocr;public void DocumentOptionsDiskExample(){var xmlFileName = Path.Combine(LEAD_VARS.ImagesDir, "DocumentWriterOptions.xml");// Create a new instance of the LEADTOOLS Document Writervar docWriter1 = new DocumentWriter();// Show the default PDF and HTML options beforeShowOptions("Default options for docWriter1", docWriter1);// Change the PDF options and HTML optionsvar pdfOptions = docWriter1.GetOptions(DocumentFormat.Pdf) as PdfDocumentOptions;pdfOptions.DocumentType = PdfDocumentType.PdfA;pdfOptions.ImageOverText = true;docWriter1.SetOptions(DocumentFormat.Pdf, pdfOptions);var htmlOptions = docWriter1.GetOptions(DocumentFormat.Html) as HtmlDocumentOptions;htmlOptions.UseBackgroundColor = true;htmlOptions.BackgroundColor = RasterColor.FromKnownColor(RasterKnownColor.LightBlue);docWriter1.SetOptions(DocumentFormat.Html, htmlOptions);// Show the options againShowOptions("New options for docWriter1", docWriter1);// Save these options to diskdocWriter1.SaveOptions(xmlFileName);// Create a new DocumentWriter objectvar docWriter2 = new DocumentWriter();// Show its options, should be the defaultsShowOptions("Default options for docWriter2", docWriter2);// Load the options from disk to this objectdocWriter2.LoadOptions(xmlFileName);// Show the options now, should be the saved onesShowOptions("Options for docWriter2 after loading from the XML file", docWriter2);}private void ShowOptions(string message, DocumentWriter docWriter){Debug.WriteLine(message);var pdfOptions = docWriter.GetOptions(DocumentFormat.Pdf) as PdfDocumentOptions;Debug.WriteLine(" PDF options: ");Debug.WriteLine(" DocumentType: " + pdfOptions.DocumentType);Debug.WriteLine(" FontEmbedMode: " + pdfOptions.FontEmbedMode);Debug.WriteLine(" ImageOverText: " + pdfOptions.ImageOverText);var htmlOptions = docWriter.GetOptions(DocumentFormat.Html) as HtmlDocumentOptions;Debug.WriteLine(" HTML options: ");Debug.WriteLine(" DocumentType: " + htmlOptions.DocumentType);Debug.WriteLine(" FontEmbedMode: " + htmlOptions.FontEmbedMode);Debug.WriteLine(" UseBackgroundColor: " + htmlOptions.UseBackgroundColor);Debug.WriteLine(" BackgroundColor: " + htmlOptions.BackgroundColor);Debug.WriteLine("-------------------------");}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images";}