Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
374 views
in Technique[技术] by (71.8m points)

iphone - Four point gradient in iOS

I am planing to create a four point gradient, pictured below, by drawing two linear gradients via core graphics and masking between them with a third black and white linear gradient.

Is there a more efficient way to draw a four point gradient using core graphics, or other?

enter image description here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Draw four circles:

Circles

Apply radial transparent gradient:

Gradient

Result:

Result

Notes:

  • The gray lines represent the bitmap size.
  • The diameter of the circles is twice the bitmap diameter.
  • Each circle is centered at one of the bitmap corner.
  • Effectively only the center part is drawn.
  • The remaining parts are outside the bitmap.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...