TiffSettings
Overview
TiffSettings is a class in Aspose.PDF FOSS for .NET.
Settings for TIFF image generation (color depth, compression).
This class provides 11 methods for working with TiffSettings objects in .NET programs.
Available methods include: TiffSettings.
All public members are accessible to any .NET application after installing the Aspose.PDF FOSS for .NET package.
Properties: Brightness, Compression, CoordinateType, Depth, Margins, Shape, and 1 more.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
Margins | Margins | Read | Page margins applied before the TIFF render. |
Depth | ColorDepth | Read/Write | The color depth (bits per pixel). |
Compression | CompressionType | Read/Write | The compression algorithm. |
SkipBlankPages | bool | Read/Write | Whether to skip blank pages during conversion. |
Brightness | float | Read/Write | Brightness adjustment (0.0-1.0, default 0.5). |
Shape | ShapeType | Read/Write | Preferred page orientation for rendered TIFF output. |
CoordinateType | PageCoordinateType | Read/Write | Which page box to use for the rendered page extents. |
Methods
| Signature | Description |
|---|---|
TiffSettings() | Initializes default TIFF settings (24bpp, no compression). |
TiffSettings(colorDepth: ColorDepth) | Initializes TIFF settings with the specified color depth. |
TiffSettings(compressionType: CompressionType) | Initializes TIFF settings with the specified compression type. |
TiffSettings(compression: CompressionType, colorDepth: ColorDepth) | Initializes TIFF settings with the specified compression and color depth. |
TiffSettings(compressionType: CompressionType, colorDepth: ColorDepth, margins: Margins) | Calls TiffSettings on this TiffSettings instance. |
TiffSettings(compressionType: CompressionType, colorDepth: ColorDepth, margins: Margins, skipBlankPages: bool) | |
TiffSettings(compressionType: CompressionType, colorDepth: ColorDepth, margins: Margins, skipBlankPages: bool, shapeType: ShapeType) | |
TiffSettings(margins: Margins) | |
TiffSettings(shapeType: ShapeType) | |
TiffSettings(skipBlankPages: bool) | |
TiffSettings(compression: CompressionType, colorDepth: ColorDepth, shape: ShapeType, brightness: float, skipBlankPages: bool) | Initializes TIFF settings with all options. |