public static ILeadStream FromStream(
Stream stream,
bool autoDisposeStream
)
Public Shared Function FromStream(
ByVal stream As Stream,
ByVal autoDisposeStream As Boolean
) As ILeadStream
stream
.NET System.IO.Stream
object to use. This value will be set into the LeadStream.Stream property.
autoDisposeStream
true if the stream should be disposed when this LeadStream disposes; otherwise, false.
ILeadStream object. This method returns an instance of LeadStream.
This method will create a new instance of LeadStream with Stream set to stream. This object can then be passed to the various LEADTOOLS class members that accepts an ILeadStream object. Such as RasterCodecs.GetInformationAsync, RasterCodecs.LoadAsync, RasterCodecs.LoadSvgAsync or RasterCodecs.SaveAsync.
LEADTOOLS supports seekable and non-seekable streams. If the stream is non-seekable, it will internally use the RasterCodecs feed load mechanism to perform the action. Refer to RasterCodecs.StartFeedLoad for more information.
The method will create a new instance of LeadFileStream using:
return new LeadStream(stream, autoDisposeStream);
Refer to RasterCodecs Async Operations for more information and examples.
For .NET Framework: A reference to the Leadtools.Async.dll assembly is required to use this functionality.
For .NET Standard: This functionality is included in the Leadtools.dll assembly.
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