VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Codecs.Encoders Namespace / PdfEncoderSettings Class / ZipCompressionLevel Property
Syntax Requirements SeeAlso
In This Topic
    ZipCompressionLevel Property (PdfEncoderSettings)
    In This Topic
    Gets or sets the ZIP compression level.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(6)>
    <DescriptionAttribute("The ZIP compression level. 0 - no compression, 1 - best speed, 9 - best compression.")>
    Public Property ZipCompressionLevel As System.Int32
    
    
    [DefaultValue(6)]
    [Description("The ZIP compression level. 0 - no compression, 1 - best speed, 9 - best compression.")]
    public System.Int32 ZipCompressionLevel { get; set; }
    
    
    [DefaultValue(6)]
    [Description("The ZIP compression level. 0 - no compression, 1 - best speed, 9 - best compression.")]
    public: __property System.Int32 get_ZipCompressionLevel();
    public: __property void set_ZipCompressionLevel(
    System.Int32 value
    );
    [DefaultValue(6)]
    [Description("The ZIP compression level. 0 - no compression, 1 - best speed, 9 - best compression.")]
    public:
    property System.Int32 ZipCompressionLevel { System.Int32 get(); void set(System.Int32 value); }

    Property Value

    Possible values: from 0 to 9.
    0 - no compression, 1 - best speed, 9 - best compression.
    Default value is 6.
    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