public void LoadOptions(
Stream stream
)
public:
void LoadOptions(
Stream^ stream
)
def LoadOptions(self,stream):
stream
The XML stream containing the data.
The load/save methods are provided as helper methods for the user. The BarcodeEngine, BarcodeReader and BarcodeWriter do not use these methods internally.
The default read options can be retrieved using the GetDefaultOptions or GetAllDefaultOptions methods. You can then change the values of the BarcodeReadOptions object returned (or cast it back to the appropriate derived class). These options are used by the ReadBarcode and ReadBarcodes methods when no explicit options are passed by the user.
To save the default options to an XML stream, use BarcodeReader.SaveOptions(Stream stream).
To save and load data to an XML file, use BarcodeReader.SaveOptions(string fileName) and BarcodeReader.LoadOptions(string fileName).
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Barcode;
using Leadtools.ImageProcessing;
public void BarcodeReader_LoadSaveOptionsExample()
{
string xmlFileName = Path.Combine(LEAD_VARS.ImagesDir, "MyReadOptions.xml");
BarcodeEngine engine1 = new BarcodeEngine();
BarcodeReader reader1 = engine1.Reader;
// Show a few of the default options
ShowReaderOptions("Default options 1:", reader1);
// Change some options
OneDBarcodeReadOptions oneDReadOptions = reader1.GetDefaultOptions(BarcodeSymbology.UPCA) as OneDBarcodeReadOptions;
oneDReadOptions.SearchDirection = BarcodeSearchDirection.HorizontalAndVertical;
QRBarcodeReadOptions qrReadOptions = reader1.GetDefaultOptions(BarcodeSymbology.QR) as QRBarcodeReadOptions;
qrReadOptions.EnableDoublePass = true;
// Show them
ShowReaderOptions("New options 1:", reader1);
// Save the options to an XML file
reader1.SaveOptions(xmlFileName);
// Now create another BarcodeReader
// We could use the same one, but this example will show that changing the options
// for one BarcodeReader will not change it in any other in the application
BarcodeEngine engine2 = new BarcodeEngine();
BarcodeReader reader2 = engine2.Reader;
// Show a few of the default options, should be the same as the first default options
ShowReaderOptions("Default options 2:", reader2);
// Load the options we just saved
reader2.LoadOptions(xmlFileName);
// Show them, should be the same as the new options in reader1
ShowReaderOptions("Loaded options 2:", reader2);
}
private void ShowReaderOptions(string message, BarcodeReader reader)
{
Console.WriteLine(message);
OneDBarcodeReadOptions oneDReadOptions = reader.GetDefaultOptions(BarcodeSymbology.UPCA) as OneDBarcodeReadOptions;
Console.WriteLine("OneDBarcodeReadOptions.SearchDirection: {0}", oneDReadOptions.SearchDirection);
QRBarcodeReadOptions qrReadOptions = reader.GetDefaultOptions(BarcodeSymbology.QR) as QRBarcodeReadOptions;
Console.WriteLine("QRBarcodeReadOptions.EnableDoublePass: {0}", qrReadOptions.EnableDoublePass);
Console.WriteLine("---------------");
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images";
}
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