VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Codecs.Decoders Namespace / CompositeRenderingSettings Class / OptimizeImageDrawing Property
Syntax Remarks Requirements SeeAlso
In This Topic
    OptimizeImageDrawing Property (CompositeRenderingSettings)
    In This Topic
    Gets or sets a value indicating whether the image drawing method must use performance optimizations for image drawing.
    Syntax
    'Declaration
    
    Public Overrides Property OptimizeImageDrawing As Boolean
    
    
    public override bool OptimizeImageDrawing { get; set; }
    
    
    public: __property bool get_OptimizeImageDrawing(); override;
    public: __property void set_OptimizeImageDrawing(
    bool value
    ); override;
    public:
    property bool OptimizeImageDrawing { bool get() override;; void set(bool value) override;; }

    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: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also