TiffSettings
Overview
TiffSettings is a class in Aspose.Pdf FOSS for Java.
Settings for TIFF image output when using {@link TiffDevice}.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
compression | CompressionType | Read | Returns the compression type for the TIFF output. |
depth | ColorDepth | Read | Returns the color depth for the TIFF output. |
shape | ShapeType | Read | Returns the shape type (orientation) for the TIFF output. |
skipBlankPages | boolean | Read | Returns whether blank pages should be skipped in the TIFF output. |
brightness | float | Read | Returns the brightness adjustment value (0.0 to 1.0). |
Methods
| Signature | Description |
|---|---|
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() → CompressionType | Returns the compression type for the TIFF output. |
setCompression(compression: CompressionType) | Sets the compression type for the TIFF output. |
getDepth() → ColorDepth | Returns the color depth for the TIFF output. |
setDepth(depth: ColorDepth) | Sets the color depth for the TIFF output. |
getShape() → ShapeType | Returns the shape type (orientation) for the TIFF output. |
setShape(shape: ShapeType) | Sets the shape type (orientation) for the TIFF output. |
isSkipBlankPages() → boolean | Returns 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() → float | Returns the brightness adjustment value (0.0 to 1.0). |
setBrightness(brightness: float) | Sets the brightness adjustment value (0.0 to 1.0). |