When processing an open xml document, colors can have various transformations applied to a base color to generate a relative color. For instance <a:satMod value="25000">
would modify the base colors saturation by 25%. There are two transforms I have been able to find very little information on and they are:
<a:gamma>
The docs say "This element specifies that the output color rendered by the generating application should be the sRGB gamma shift of the input color."
and
<a:invGamma>
The docs say "This element specifies that the output color rendered by the generating application should be the inverse sRGB gamma shift of the input color."
I would like to understand what calculation I would have to do on the base color to transform it using either of these transformations. Has anybody figured this out?