SaveTiffSettings
Syntax
interface SaveTiffSettings {
customTag?: CustomTag[];
compression?: EnumTIFFCompressionType;
quality?: number;
saveAnnotation?: boolean;
}
Attributes
customTag
Custom tiff tag(s). Please refer to CustomTag
compression
Specify the compression type. Please refer to EnumTiffCompressionType.
Default value: TIFF_AUTO
quality
Specify the quality of the images in the file. The value ranges from 0 to 100. Only valid when the compression
is TIFF_JPEG
.
saveAnnotation
Whether to save the annotation(s) as the part of image. Default vaule: false
.