VintaSoft Imaging .NET SDK 12.3: Documentation for .NET developer
Vintasoft.Imaging.Codecs.ImageFiles.Tiff Namespace / SpecialTiffTagId Enumeration
Syntax Members Remarks Hierarchy Requirements SeeAlso
In This Topic
    SpecialTiffTagId Enumeration
    In This Topic
    Specifies available special TIFF tag identifiers, which will not be copied into a new image.
    Syntax
    'Declaration
    
    <CLSCompliantAttribute(False)>
    Public Enum SpecialTiffTagId
       Inherits System.Enum
    
    
    [CLSCompliant(False)]
    public enum SpecialTiffTagId : System.Enum
    
    
    [CLSCompliant(False)]
    __value public enum SpecialTiffTagId : public System.Enum
    
    
    [CLSCompliant(False)]
    public enum class SpecialTiffTagId : public System.Enum
    
    
    Members
    MemberDescription
    NewSubfileA general indication of the kind of data contained in this subfile.
    ImageWidthThe number of columns in the image, i.e., the number of pixels per row.
    ImageLengthThe number of rows of pixels in the image.
    BitsPerSampleNumber of bits per component.
    CompressionCompression scheme used on the image data.
    PhotometricInterpretationThe color space of the image data.
    StripOffsetsFor each strip, the byte offset of that strip.
    OrientationThe orientation of the image with respect to the rows and columns.
    SamplesPerPixelThe number of components per pixel.
    RowsPerStripThe number of rows per strip.
    StripByteCountsFor each strip, the number of bytes in the strip after compression.
    XResolutionThe number of pixels per ResolutionUnit in the ImageWidth direction.
    YResolutionThe number of pixels per ResolutionUnit in the ImageLength direction.
    PlanarConfigurationHow the components of each pixel are stored.
    ResolutionUnitThe unit of measurement for XResolution and YResolution.
    PredictorA mathematical operator that is applied to the image data before an encoding scheme is applied.
    ColorMapA color map for palette color images.
    TileOffsetsFor each tile, the byte offset of that tile, as compressed and stored on disk.
    TileByteCountsFor each tile, the number of (compressed) bytes in that tile.
    TileWidthThe tile width in pixels. This is the number of columns in each tile.
    TileLengthThe tile length (height) in pixels. This is the number of rows in each tile.
    JPEGInterchangeFormatOld-style JPEG compression field.
    JPEGInterchangeFormatLengthOld-style JPEG compression field.
    FillOrderThe logical order of bits within a byte.
    T4OptionsOptions for Group 3 Fax compression.
    ExtraSamplesExtra samples.
    JPEGTablesJPEG quantization and/or Huffman tables.
    JPEGProcOld-style JPEG compression field.
    JPEGRestartIntervalOld-style JPEG compression field.
    JPEGQTablesOld-style JPEG compression field.
    JPEGDCTablesOld-style JPEG compression field.
    JPEGACTablesOld-style JPEG compression field.
    YCbCrSubSamplingSpecifies the subsampling factors used for the chrominance components of a YCbCr image.
    ICCProfileICC profile data.
    MakerNoteManufacturer specific information.
    MinSampleValueThe minimum component value used.
    MaxSampleValueThe maximum component value used.
    T6OptionsOptions for Group 4 Fax compression.
    WhitePointThe chromaticity of the white point of the image.
    PrimaryChromaticitiesThe chromaticities of the primaries of the image.
    BadFaxLinesUsed in the TIFF-F standard, denotes the number of 'bad' scan lines encountered by the facsimile device.
    CleanFaxDataUsed in the TIFF-F standard, indicates if 'bad' lines encountered during reception are stored in the data, or if 'bad' lines have been replaced by the receiver.
    ConsecutiveBadFaxLinesUsed in the TIFF-F standard, denotes the maximum number of consecutive 'bad' scanlines received.
    InkSetThe set of inks used in a separated (PhotometricInterpretation=5) image.
    InkNamesThe name of each ink used in a separated image.
    NumberOfInksThe number of inks.
    DotRangeThe component values that correspond to a 0% dot and 100% dot.
    TargetPrinterA description of the printing environment for which this separation is intended.
    SampleFormatSpecifies how to interpret each data sample in a pixel.
    SMinSampleValueSpecifies the minimum sample value.
    SMaxSampleValueSpecifies the maximum sample value.
    TransferRangeExpands the range of the TransferFunction.
    ClipPathMirrors the essentials of PostScript's path creation functionality.
    XClipPathUnitsThe number of units that span the width of the image, in terms of integer ClipPath coordinates.
    YClipPathUnitsThe number of units that span the height of the image, in terms of integer ClipPath coordinates.
    IndexedAims to broaden the support for indexed images to include support for any color space.
    JPEGLosslessPredictorsOld-style JPEG compression field.
    JPEGPointTransformsOld-style JPEG compression field.
    YCbCrCoefficientsThe transformation from RGB to YCbCr image data.
    YCbCrPositioningSpecifies the positioning of subsampled chrominance components relative to luminance samples.
    ReferenceBlackWhiteSpecifies a pair of headroom and footroom image data values (codes) for each pixel component.
    StripRowCountsDefined in the Mixed Raster Content part of RFC 2301, used to replace RowsPerStrip for IFDs with variable-sized strips.
    ImageLayerDefined in the Mixed Raster Content part of RFC 2301, used to denote the particular function of this Image in the mixed raster scheme.
    XPositionX position of the image.
    YPositionY position of the image.
    FreeOffsetsFor each string of contiguous unused bytes in a TIFF file, the byte offset of the string.
    FreeByteCountsFor each string of contiguous unused bytes in a TIFF file, the number of bytes in the string.
    GrayResponseUnitThe precision of the information contained in the GrayResponseCurve.
    GrayResponseCurveFor grayscale data, the optical density of each possible pixel value.
    ColorResponseUnitWith ColorResponseCurve specifies how each entry in the table is to be interpreted.
    ColorResponseCurveWith ColorResponseUnit specifies how each entry in the table is to be interpreted.
    HalftoneHintsConveys to the halftone function the range of gray levels within a colorimetrically-specified image that should retain tonal detail.
    Remarks

    Tags with identifierss from this enumeration are NOT copied during conversion of image from one format to another.

    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Vintasoft.Imaging.Codecs.ImageFiles.Tiff.SpecialTiffTagId

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also