[]
        
(Showing Draft Content)

GrapeCity.Documents.Imaging.GcTiffWriter.-ctor

GcTiffWriter Constructor

GcTiffWriter(string, bool)

Initializes a new instance of GcTiffWriter class and sets the output file.

Declaration
public GcTiffWriter(string filePath, bool bigEndian = false)
Public Sub New(filePath As String, Optional bigEndian As Boolean = False)
Parameters
Type Name Description
string filePath

Full path to the output file.

bool bigEndian

Indicates whether big-endian (true) or little-endian (false) byte order is used within the output file.

GcTiffWriter(Stream, bool, bool)

Initializes a new instance of GcTiffWriter class and sets the output stream.

Declaration
public GcTiffWriter(Stream stream, bool ownStream = false, bool bigEndian = false)
Public Sub New(stream As Stream, Optional ownStream As Boolean = False, Optional bigEndian As Boolean = False)
Parameters
Type Name Description
Stream stream

The output stream.

bool ownStream

Indicates whether the output stream should be disposed together with GcTiffWriter.

bool bigEndian

Indicates whether big-endian (true) or little-endian (false) byte order is used within the output stream.