Loads a document from existing data stored in a stream.
public static LEADDocument LoadFromStream(
Stream stream,
LoadDocumentOptions options
)
Public Shared Function LoadFromStream(
ByVal stream As System.IO.Stream,
ByVal options As LoadDocumentOptions
) As LEADDocument
public:
static LEADDocument^ LoadFromStream(
System::IO::Stream^ stream,
LoadDocumentOptions^ options
)
stream
Stream containing the original document data. This value cannot be null, and the stream must be seekable.
options
Options to use when loading the document. This value cannot be null.
The newly created document object.
This method could use the cache and will throw an exception if neither LoadDocumentOptions.Cache nor Cache were set up with a valid cache object if certain options had been used.
LoadFromFile, LoadFromUri, LoadFromUriAsync and LoadFromStream all create a LEADDocument class from any supported image or document file format stored in a disk file, remote URL, or stream. The returned object can then be used to retrieve any page as image or SVG, to obtain the text using SVG or OCR, to use annotations, or to use document structures such as links and bookmarks.
The LEADDocument class will use the stream members to read the various parts, such as the images and metadata, on demand as needed. It is the user's responsibility to keep the stream alive while the document is not disposed. When the document is disposed, the stream is no longer used and can be closed or disposed by the user.
The value of stream will be stored in the LEADDocument.Stream property when this method successfully returns.
If the document is saved into the cache using SaveToCache, then the entire content of the stream is saved into the cache and the stream is no longer used and can be safely disposed by the user. When the document is later re-loaded from the cache using LoadFromCache, then it is treated as if it had been downloaded from an external resource and the stream functionality is not used (the value of Stream will be null).
After the document is obtained, InternalObject will be to the internal LEADTOOLS object used with the document.
Refer to Loading Using LEADTOOLS Document Library for detailed information on how to use this method and the various options used.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Document.Writer;
using Leadtools.Svg;
using LeadtoolsExamples.Common;
using Leadtools.Document;
using Leadtools.Caching;
using Leadtools.Annotations.Engine;
using Leadtools.Ocr;
using Leadtools.Barcode;
using Leadtools.Document.Converter;
public static void DocumentFactoryLoadFromStreamExample()
{
// Get a stream to anything, in this case a file
// Note that the stream must be seekable
var fileName = Path.Combine(ImagesPath.Path, "Leadtools.pdf");
using (var stream = File.OpenRead(fileName))
{
// We must keep the stream alive as long as the document is alive
var options = new LoadDocumentOptions();
using (var document = DocumentFactory.LoadFromStream(stream, options))
{
PrintOutDocumentInfo(document);
}
}
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.Document.Writer
Imports Leadtools.Svg
Imports Leadtools.Document
Imports Leadtools.Caching
Imports Leadtools.Annotations.Engine
Imports Leadtools.Barcode
Imports Leadtools.Ocr
Imports LeadtoolsDocumentExamples.LeadtoolsExamples.Common
Imports Leadtools.Document.Converter
Public Shared Sub DocumentFactoryLoadFromStreamExample()
' Get a stream to anything, in this case a file
' Note that the stream must be seekable
Dim fileName As String = Path.Combine(ImagesPath.Path, "Leadtools.pdf")
Using stream As Stream = File.OpenRead(fileName)
' We must keep the stream alive as long as the document is alive
Dim options As New LoadDocumentOptions()
Using document As LEADDocument = DocumentFactory.LoadFromStream(stream, options)
PrintOutDocumentInfo(document)
End Using
End Using
End Sub
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