Skip to content

Instantly share code, notes, and snippets.

@andreberg
Last active May 9, 2020 19:46
Show Gist options
  • Save andreberg/391402 to your computer and use it in GitHub Desktop.
Save andreberg/391402 to your computer and use it in GitHub Desktop.
[sRGB Response Curve] Math formula for generating a sRGB standard response curve. #color #colorcorrection #colorprofile #standard
if (in <= 0.00304)
{
out = in*12.92;
}
else
{
out = (1.055 * pow(in, (1.0/2.4)) - 0.055);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment