如何使用线性渐变绘制圆

时间:2011-09-13 17:49:19

标签: blackberry user-interface

有谁知道我怎么能在黑莓手机中画出这样的东西?这个SVG示例应该可以帮助您了解我想要实现的目标。将其粘贴here以在浏览器中查看结果。

<html>
<body>

<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#0069A9;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#014C79;stop-opacity:1" />
    </linearGradient>
  </defs>
  <ellipse cx="200" cy="200" rx="85" ry="85" fill="url(#grad1)" />
</svg>

</body>
</html>

Graphics.drawShadedFilledPath函数不会让我画出一个完美的圆圈,不幸的是我不能使用上面的SVG示例。

0 个答案:

没有答案