SaveOptions(Stream) Method
Summary
Saves the document options to an XML stream.
Syntax
C#
VB
Java
Objective-C
C++
public void SaveOptions(
Stream stream
)
Public Overloads Sub SaveOptions( _
ByVal stream As Stream _
)
macOS Only:
- (void)saveOptionsToData:(NSMutableData *)data
public void saveOptions(OutputStream stream)
public:
void SaveOptions(
Stream^ stream
)
Parameters
stream
A standard .NET Stream to save the options to.
Example
This example will change some of the options in a DocumentWriter object, saves them to a memory stream and then re-load them in a new instance.
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.Forms.DocumentWriters
Imports Leadtools.Forms.Ocr
Public Sub DocumentOptionsStreamExample()
' Use a memory stream to save the options to
Using stream As New MemoryStream()
' Create a new instance of the LEADTOOLS Document Writer
Dim docWriter1 As New DocumentWriter()
' Show the default PDF and HTML options before
ShowMyOptions("Default options for docWriter1", docWriter1)
' Change the PDF options and HTML options
Dim pdfOptions As PdfDocumentOptions = DirectCast(docWriter1.GetOptions(DocumentFormat.Pdf), PdfDocumentOptions)
pdfOptions.DocumentType = PdfDocumentType.PdfA
pdfOptions.ImageOverText = True
docWriter1.SetOptions(DocumentFormat.Pdf, pdfOptions)
Dim htmlOptions As HtmlDocumentOptions = DirectCast(docWriter1.GetOptions(DocumentFormat.Html), HtmlDocumentOptions)
htmlOptions.DocumentType = HtmlDocumentType.IENetscape
htmlOptions.UseBackgroundColor = True
htmlOptions.BackgroundColor = RasterColor.FromKnownColor(RasterKnownColor.LightBlue)
docWriter1.SetOptions(DocumentFormat.Html, htmlOptions)
' Show the options again
ShowMyOptions("New options for docWriter1", docWriter1)
' Save these options to the stream
docWriter1.SaveOptions(stream)
' Reset the stream back to its original position
stream.Position = 0
' Create a new DocumentWriter object
Dim docWriter2 As New DocumentWriter()
' Show its options, should be the defaults
ShowMyOptions("Default options for docWriter2", docWriter2)
' Load the options from the memory to this object
docWriter2.LoadOptions(stream)
' Show the options now, should be the saved ones
ShowMyOptions("Options for docWriter2 after loading from the XML file", docWriter2)
End Using
End Sub
Private Sub ShowMyOptions(message As String, docWriter As DocumentWriter)
Console.WriteLine(message)
Dim pdfOptions As PdfDocumentOptions = DirectCast(docWriter.GetOptions(DocumentFormat.Pdf), PdfDocumentOptions)
Console.WriteLine(" PDF options: ")
Console.WriteLine(" DocumentType: " + pdfOptions.DocumentType.ToString())
Console.WriteLine(" FontEmbedMode: " + pdfOptions.FontEmbedMode.ToString())
Console.WriteLine(" ImageOverText: " + pdfOptions.ImageOverText.ToString())
Dim htmlOptions As HtmlDocumentOptions = DirectCast(docWriter.GetOptions(DocumentFormat.Html), HtmlDocumentOptions)
Console.WriteLine(" HTML options: ")
Console.WriteLine(" DocumentType: " + htmlOptions.DocumentType.ToString())
Console.WriteLine(" FontEmbedMode: " + htmlOptions.FontEmbedMode.ToString())
Console.WriteLine(" UseBackgroundColor: " + htmlOptions.UseBackgroundColor.ToString())
Console.WriteLine(" BackgroundColor: " + htmlOptions.BackgroundColor.ToString())
Console.WriteLine("-------------------------")
End Sub
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Forms.DocumentWriters;
using Leadtools.Forms.Ocr;
public void DocumentOptionsStreamExample()
{
// Use a memory stream to save the options to
using (var stream = new MemoryStream())
{
// Create a new instance of the LEADTOOLS Document Writer
var docWriter1 = new DocumentWriter();
// Show the default PDF and HTML options before
ShowMyOptions("Default options for docWriter1", docWriter1);
// Change the PDF options and HTML options
var 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.DocumentType = HtmlDocumentType.IENetscape;
htmlOptions.UseBackgroundColor = true;
htmlOptions.BackgroundColor = RasterColor.FromKnownColor(RasterKnownColor.LightBlue);
docWriter1.SetOptions(DocumentFormat.Html, htmlOptions);
// Show the options again
ShowMyOptions("New options for docWriter1", docWriter1);
// Save these options to the stream
docWriter1.SaveOptions(stream);
// Reset the stream back to its original position
stream.Position = 0;
// Create a new DocumentWriter object
var docWriter2 = new DocumentWriter();
// Show its options, should be the defaults
ShowMyOptions("Default options for docWriter2", docWriter2);
// Load the options from the memory to this object
docWriter2.LoadOptions(stream);
// Show the options now, should be the saved ones
ShowMyOptions("Options for docWriter2 after loading from the XML file", docWriter2);
}
}
private void ShowMyOptions(string message, DocumentWriter docWriter)
{
Console.WriteLine(message);
var pdfOptions = docWriter.GetOptions(DocumentFormat.Pdf) as PdfDocumentOptions;
Console.WriteLine(" PDF options: ");
Console.WriteLine(" DocumentType: " + pdfOptions.DocumentType);
Console.WriteLine(" FontEmbedMode: " + pdfOptions.FontEmbedMode);
Console.WriteLine(" ImageOverText: " + pdfOptions.ImageOverText);
var htmlOptions = docWriter.GetOptions(DocumentFormat.Html) as HtmlDocumentOptions;
Console.WriteLine(" HTML options: ");
Console.WriteLine(" DocumentType: " + htmlOptions.DocumentType);
Console.WriteLine(" FontEmbedMode: " + htmlOptions.FontEmbedMode);
Console.WriteLine(" UseBackgroundColor: " + htmlOptions.UseBackgroundColor);
Console.WriteLine(" BackgroundColor: " + htmlOptions.BackgroundColor);
Console.WriteLine("-------------------------");
}