Creates a disk file for writing as an ILeadStream object.
public static ILeadStream CreateFile(
string fileName
)
def Open(self, fileName):
fileName
Path to the file on disk.
ILeadStream object. This method returns an instance of LeadFileStream.
This method will create a new instance of LeadFileStream with FileName set to fileName and the file mode and share set to read/write. If the file does not exist it will be created. This object can then be passed to the various LEADTOOLS class members that accept an ILeadStream object. Such as RasterCodecs.SaveAsync.
The method will create a new instance of LeadFileStream using:
return new LeadFileStream(fileName, FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite);
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