VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Codecs.Encoders Namespace / Jpeg2000EncoderSettings Class / FileSize Property
Syntax Remarks Requirements SeeAlso
In This Topic
    FileSize Property (Jpeg2000EncoderSettings)
    In This Topic
    Gets or sets desired size of the compressed image in bytes.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(0)>
    <DescriptionAttribute("Desired size of the compressed image in bytes.")>
    Public Property FileSize As Long
    
    
    [DefaultValue(0)]
    [Description("Desired size of the compressed image in bytes.")]
    public long FileSize { get; set; }
    
    
    [DefaultValue(0)]
    [Description("Desired size of the compressed image in bytes.")]
    public: __property long get_FileSize();
    public: __property void set_FileSize(
    long value
    );
    [DefaultValue(0)]
    [Description("Desired size of the compressed image in bytes.")]
    public:
    property long FileSize { long get(); void set(long value); }

    Property Value

    Default value is 0.
    Remarks

    This value has effect only if CompressionType is set to Jpeg2000CompressionType.Lossy.

    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