Click or drag to resize

TiffCodecCompression Class

This class represents the compression for a TIFF image.
Inheritance Hierarchy
SystemObject
  Atalasoft.Imaging.CodecCodecCompression
    Atalasoft.Imaging.CodecTiffCodecCompression

Namespace:  Atalasoft.Imaging.Codec
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public class TiffCodecCompression : CodecCompression

The TiffCodecCompression type exposes the following members.

Constructors
  NameDescription
Public methodTiffCodecCompression(TiffCompression)
Creates a new instance of TiffCodecCompression specifying the compression type.
Public methodTiffCodecCompression(TiffCompression, Int32)
Creates a new instance of TiffCodecCompression specifying the compression type and JPEG quality.
Public methodTiffCodecCompression(TiffCompression, Int32, Boolean)
Creates a new instance of TiffCodecCompression specifying the compression type, JPEG Quality, and LZW Predictor.
Public methodTiffCodecCompression(TiffCompression, Int32, Boolean, Boolean)
Creates a new instance of TiffCodecCompression specifying the compression type, JPEG Quality, and LZW Predictor, and whether to use old style JPEG compression.
Top
Properties
  NameDescription
Public propertyCompression
Gets or sets the TIFF compression to use.
Public propertyJpegQuality
Gets or sets the JPEG quality when Compression is set to JPEG.
Public propertyUseLzwPredictor
Gets or sets the LZW predictor value.
Public propertyUseOldJpegCompression Obsolete.
Gets or sets a value indicating if Old Style JPEG compression should be used when Compression is set to JPEG.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
Used in the MultiFramedImageEncoder when saving a multipage image to indicate the compression settings for each page in a TIFF.
See Also