←Select platform

FromStream Method

Summary

Wraps a .NET System.IO.Stream as an ILeadStream object.

Syntax
C#
Python
public static ILeadStream FromStream( 
   Stream stream, 
   bool autoDisposeStream 
) 
def FromStream(self, stream, autoDisposeStream):  

Parameters

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.

Return Value

ILeadStream object. This method returns an instance of LeadStream.

Remarks

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:

C#
return new LeadStream(stream, autoDisposeStream); 

Refer to RasterCodecs Async Operations for more information and examples.

Requirements

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.

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.