Click here to Skip to main content
15,884,177 members
Articles / Desktop Programming / MFC
Article

Gamma correction slider

Rate me:
Please Sign up or sign in to vote.
4.71/5 (12 votes)
3 Nov 2002CPOL1 min read 175.6K   7.3K   34   29
Slider control class to perform gamma correction.

Sample Image - Gamma_Manager.gif

Introduction

Gamma Manager is based on Gamma Slider control. This control allows to change gamma monitor on most graphic cards. The goal for this project is very simple and control is for VC6 & VC7.

The other day I downloaded a N64 emulator but the screen was so black that I did not see anything. I had thus to find this solution to lighten my screen. I know that the tools of my video chart make it possible to change gamma of my screen, but it is faster with this tool.

Implementation

The implementation of this slider control is very easy.

  1. Import GammaSlider.h and GammaSlider.cpp into your project.
  2. Include reference to the class control.
  3. Add slider control on a form.
  4. Use ClassWizard to declare variable name derived from CGammaSlider control.
  5. That's it, enjoy!

Under the hood

Windows provides two APIs GetDeviceGammaRamp/ SetDeviceGammaRamp to perform gamma correction. In fact we need to have a 3 dimensional buffer of 256 WORD to manipulate gamma correction. To change gamma, it is necessary to change the RGB value of each color contained in the buffer by a float factor between 0.0 and 2.0.

Example

  • We need to save current gamma for future restore.
    WORD m_RampSaved[256*3]; 
    if (!GetDeviceGammaRamp(::GetDC(NULL), m_RampSaved))
    {
        TRACE("WARNING: Cannot initialize DeviceGammaRamp.\n");
    }
  • To change gamma, cycle into ramp buffer and change RGB color where Gamma is the float factor.
    WORD ramp[256*3];
    for( int i=0; i<256; i++ ) {
        ramp[i+0] = ramp[i+256] = ramp[i+512] = 
        (WORD)min(65535, max(0, pow((i+1) / 256.0, Gamma) * 65535 + 0.5));
    }
    SetDeviceGammaRamp(::GetDC(NULL), ramp);
  • Now to trap slider control message, we need to use a special message ON_WM_HSCROLL_REFLECT() that can provide message to be dispatched into control class itself.

History

  • v1.1 - Added functions LoadSettings and SaveSettings
  • v1.0 - Initial release

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO
Canada Canada

Comments and Discussions

 
GeneralC#.Net version for setting brightnessness/contrast for your screen Pin
GamePlanner9-May-09 13:28
GamePlanner9-May-09 13:28 
Question!!Important!!I found a problem for Gamma correction slider!! Pin
strongpan19-Jan-09 18:57
strongpan19-Jan-09 18:57 
General.Net version Pin
nasserdw2-Oct-07 23:49
nasserdw2-Oct-07 23:49 
GeneralRe: .Net version Pin
Swarley28-Jan-09 4:32
Swarley28-Jan-09 4:32 
GeneralSetDeviceGammaRamp Operation Pin
nikki69010310-Dec-06 20:47
nikki69010310-Dec-06 20:47 
QuestionSetDeviceGammaRamp Operation Pin
nikki69010310-Dec-06 19:53
nikki69010310-Dec-06 19:53 
QuestionPOW Pin
beckers95610-Sep-06 4:19
beckers95610-Sep-06 4:19 
AnswerRe: POW Pin
slawekkowalski25-Aug-07 4:22
slawekkowalski25-Aug-07 4:22 
GeneralDual Monitors Pin
srboisvert27-Jul-06 2:54
srboisvert27-Jul-06 2:54 
GeneralScreen Darkness Pin
georgeantohe8-Jun-06 9:38
georgeantohe8-Jun-06 9:38 
GeneralRGB correction Pin
Robsori3-May-06 20:43
Robsori3-May-06 20:43 
GeneralCorrection for Geforce Card Pin
DigitalCAS28-Dec-03 7:04
DigitalCAS28-Dec-03 7:04 
GeneralRe: Correction for Geforce Card Pin
Synetech5-May-06 20:01
Synetech5-May-06 20:01 
QuestionIs this code free? Can it be used for any purposes? Pin
radiaki25-May-03 12:03
radiaki25-May-03 12:03 
AnswerRe: Is this code free? Can it be used for any purposes? Pin
DCUtility25-May-03 14:36
professionalDCUtility25-May-03 14:36 
Generalneed help for similar control in EVC++ for windows CE 3.0 Pin
deepmala24-Mar-03 21:58
deepmala24-Mar-03 21:58 
GeneralHoping for help. Pin
jinxie31-Jan-03 0:21
jinxie31-Jan-03 0:21 
GeneralRe: Hoping for help. Pin
Christian Graus31-Jan-03 1:08
protectorChristian Graus31-Jan-03 1:08 
GeneralAlso... Pin
NormDroid4-Nov-02 21:14
professionalNormDroid4-Nov-02 21:14 
GeneralBug! Pin
NormDroid4-Nov-02 21:03
professionalNormDroid4-Nov-02 21:03 
Dany found a small bug in the headers, causes a bug in VC++ 7.0.

WORD m_RampSaved[255*3];

should be

WORD m_RampSaved[256*3];


"VB the polished turd of software languages"
GeneralRe: Bug! Pin
DCUtility5-Nov-02 6:21
professionalDCUtility5-Nov-02 6:21 
GeneralRe: Bug! Pin
sirb22-Dec-08 2:56
sirb22-Dec-08 2:56 
GeneralSaving Settings Pin
NormDroid2-Nov-02 23:13
professionalNormDroid2-Nov-02 23:13 
GeneralRe: Saving Settings Pin
DCUtility3-Nov-02 16:10
professionalDCUtility3-Nov-02 16:10 
GeneralWow, what a GREAT guy! Pin
DeviantCoding1-Nov-02 15:34
DeviantCoding1-Nov-02 15:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.