GSColor: Difference between revisions

From iPhone Development Wiki
(Created page with '{{occlass|library=GraphicsServices.framework}} GSColor is a group of C functions that extends CGColor of CoreGraphics. It provides these tasks…')
(No difference)

Revision as of 15:47, 3 October 2009


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