VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Codecs.Decoders Namespace / RenderingSettings Class / OptimizeImageDrawing Property
Syntax Remarks Requirements SeeAlso
In This Topic
    OptimizeImageDrawing Property (RenderingSettings)
    In This Topic
    Gets or sets a value indicating whether the image drawing method must use performance optimizations for image drawing.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(True)>
    Public Overridable Property OptimizeImageDrawing As Boolean
    
    
    [DefaultValue(True)]
    public virtual bool OptimizeImageDrawing { get; set; }
    
    
    [DefaultValue(True)]
    public: __property virtual bool get_OptimizeImageDrawing();
    public: __property virtual void set_OptimizeImageDrawing(
    bool value
    );
    [DefaultValue(True)]
    public:
    virtual property bool OptimizeImageDrawing { bool get(); void set(bool value); }

    Property Value

    True - the image drawing method must optimize image drawing to increase drawing performance;
    false - the image drawing method must draw image without optimizations.
    Default value is true.
    Remarks

    Enabled optimization may cause low quality image drawing in some rare situations, for example, if black-white halftone image is stored in 24-bit RGB format.

    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