VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Codecs.Encoders Namespace / TiffEncoderSettings Class / RecompressImageData Property
Syntax Requirements SeeAlso
In This Topic
    RecompressImageData Property (TiffEncoderSettings)
    In This Topic
    Gets or sets a value indicating whether TIFF image data must be recompressed when TIFF image is copied from one TIFF file to another TIFF file.
    Syntax
    'Declaration
    
    Public Property RecompressImageData As Boolean
    
    
    public bool RecompressImageData { get; set; }
    
    
    public: __property bool get_RecompressImageData();
    public: __property void set_RecompressImageData(
    bool value
    );
    public:
    property bool RecompressImageData { bool get(); void set(bool value); }

    Property Value

    True - original data of TIFF image must be decompressed, data must be compressed with new encoder settings, compressed data must be copied from source TIFF file to the destination TIFF file;
    false - original data of TIFF image must be copied from source TIFF file to the destination TIFF file.
    Default value is True.
    Requirements

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

    See Also