VirtualBox

source: vbox/trunk/src/libs/libpng-1.6.42/contrib/tools/sRGB.h@ 103316

Last change on this file since 103316 was 103316, checked in by vboxsync, 12 months ago

libpng-1.6.42: Applied and adjusted our libpng changes to 1.6.42. bugref:8515

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1/* sRGB.h
2 *
3 * COPYRIGHT: Written by John Cunningham Bowler, 2013.
4 * To the extent possible under law, the author has waived all copyright and
5 * related or neighboring rights to this work. This work is published from:
6 * United States.
7 *
8 * Utility file; not actually a header, this contains definitions of sRGB
9 * calculation functions for inclusion in those test programs that need them.
10 *
11 * All routines take and return a floating point value in the range
12 * 0 to 1.0, doing a calculation according to the sRGB specification
13 * (in fact the source of the numbers is the wikipedia article at
14 * https://en.wikipedia.org/wiki/SRGB).
15 */
16
17static double
18sRGB_from_linear(double l)
19{
20 if (l <= 0.0031308)
21 l *= 12.92;
22
23 else
24 l = 1.055 * pow(l, 1/2.4) - 0.055;
25
26 return l;
27}
28
29static double
30linear_from_sRGB(double s)
31{
32 if (s <= 0.04045)
33 return s / 12.92;
34
35 else
36 return pow((s+0.055)/1.055, 2.4);
37}
38
39static double
40YfromRGB(double r, double g, double b)
41{
42 /* Use the sRGB (rounded) coefficients for Rlinear, Glinear, Blinear to get
43 * the CIE Y value (also linear).
44 */
45 return 0.2126 * r + 0.7152 * g + 0.0722 * b;
46}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette