ImageGear .NET v25.2 - Updated
ImageGear.Processing.Advanced Assembly / ImageGear.Processing Namespace / ImGearEffects Class / Boost Method
Page to process.
Amount by which to boost (or 'unboost') colors in the image. 1.0 corresponds to no change, < 1.0 decreases saturation and brightness, > 1.0 increases saturation and brightness.




In This Topic
    Boost Method
    In This Topic
    This method increases saturation, brightness and contrast of the image.
    Syntax
    'Declaration
     
    Public Shared Sub Boost( _
       ByVal page As ImGearRasterPage, _
       ByVal strength As Double _
    ) 
    'Usage
     
    Dim page As ImGearRasterPage
    Dim strength As Double
     
    ImGearEffects.Boost(page, strength)
    public static void Boost( 
       ImGearRasterPage page,
       double strength
    )
    public: static void Boost( 
       ImGearRasterPage* page,
       double strength
    ) 
    public:
    static void Boost( 
       ImGearRasterPage^ page,
       double strength
    ) 

    Parameters

    page
    Page to process.
    strength
    Amount by which to boost (or 'unboost') colors in the image. 1.0 corresponds to no change, < 1.0 decreases saturation and brightness, > 1.0 increases saturation and brightness.
    Remarks
    Use this method if you need a simple way to make old and faded images look more vivid.
    See Also