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

Categories

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

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

1 Answer

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.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...