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

NameTypeAccessDescription
MarginsMarginsReadPage margins applied before the TIFF render.
DepthColorDepthRead/WriteThe color depth (bits per pixel).
CompressionCompressionTypeRead/WriteThe compression algorithm.
SkipBlankPagesboolRead/WriteWhether to skip blank pages during conversion.
BrightnessfloatRead/WriteBrightness adjustment (0.0-1.0, default 0.5).
ShapeShapeTypeRead/WritePreferred page orientation for rendered TIFF output.
CoordinateTypePageCoordinateTypeRead/WriteWhich page box to use for the rendered page extents.

Methods

SignatureDescription
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.

See Also