TiffSettings

Overview

TiffSettings is a class in Aspose.Pdf FOSS for Java.

Settings for TIFF image output when using {@link TiffDevice}.

Properties

NameTypeAccessDescription
compressionCompressionTypeReadReturns the compression type for the TIFF output.
depthColorDepthReadReturns the color depth for the TIFF output.
shapeShapeTypeReadReturns the shape type (orientation) for the TIFF output.
skipBlankPagesbooleanReadReturns whether blank pages should be skipped in the TIFF output.
brightnessfloatReadReturns the brightness adjustment value (0.0 to 1.0).

Methods

SignatureDescription
TiffSettings()Creates a TiffSettings with default values.
TiffSettings(depth: ColorDepth)Creates a TiffSettings with the specified color depth (e.g.
TiffSettings(compression: CompressionType)Creates a TiffSettings with the specified compression type.
TiffSettings(compression: CompressionType, depth: ColorDepth)Creates a TiffSettings with the specified compression type and color depth.
getCompression()CompressionTypeReturns the compression type for the TIFF output.
setCompression(compression: CompressionType)Sets the compression type for the TIFF output.
getDepth()ColorDepthReturns the color depth for the TIFF output.
setDepth(depth: ColorDepth)Sets the color depth for the TIFF output.
getShape()ShapeTypeReturns the shape type (orientation) for the TIFF output.
setShape(shape: ShapeType)Sets the shape type (orientation) for the TIFF output.
isSkipBlankPages()booleanReturns whether blank pages should be skipped in the TIFF output.
setSkipBlankPages(skipBlankPages: boolean)Sets whether blank pages should be skipped in the TIFF output.
getBrightness()floatReturns the brightness adjustment value (0.0 to 1.0).
setBrightness(brightness: float)Sets the brightness adjustment value (0.0 to 1.0).

See Also