GSColor

From iPhone Development Wiki
Revision as of 15:47, 3 October 2009 by KennyTM~ (talk | contribs) (Created page with '{{occlass|library=GraphicsServices.framework}} GSColor is a group of C functions that extends CGColor of CoreGraphics. It provides these tasks…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


GSColor is a group of C functions that extends CGColor of CoreGraphics. It provides these tasks:

  • Obtain the RGBA components of a color.
  • Caching common colors.
  • Blending two colors together.

Example code

CGColor brownColor = GSColorForSystemColor(kGSBrownColor);
CGColor myBlueColor = GSColorCreateColorWithDeviceRGBA(0.2, 0.3, 0.9, 1);
CGColor blendedColor = GSColorCreateBlendedColorWithFraction(brownColor, myBlueColor, 0.25);  // 75% brown + 25% myBlue.
CGFloat blendedRedComponent = GSColorGetRedComponent(blendedColor);

CGColorRelease(myBlueColor);
CGColorRelease(blendedColor);

Header