TiffOptions constructor

init

Initializes a new instance of the TiffOptions class. By default little endian convention is used.

def __init__(self, expected_format):
    ...
ParameterTypeDescription
expected_formataspose.cad.fileformats.tiff.enums.TiffExpectedFormatThe expected tiff file format.

init

Initializes a new instance of the TiffOptions class.

def __init__(self, options):
    ...
ParameterTypeDescription
optionsTiffOptionsThe options to copy from.

init

Initializes a new instance of the TiffOptions class.

def __init__(self, tags):
    ...
ParameterTypeDescription
tagslistThe tags to initialize options with.

init

Initializes a new instance of the TiffOptions class.

def __init__(self, expected_format, byte_order):
    ...
ParameterTypeDescription
expected_formataspose.cad.fileformats.tiff.enums.TiffExpectedFormatThe expected tiff file format.
byte_orderaspose.cad.fileformats.tiff.enums.TiffByteOrderThe tiff file format byte order to use.

See Also