2010-12-14 4 views

답변

1

여기에 사전에 대신 텍스트 문자열의 textpath에서 원, 가능 그것을 구현하는 방법, 도움이 굉장합니다을 추가해야한다는 것입니다 http://tutorials.jenkov.com/svg/textpath-element.html

당신은 발견 할 것이다 : 야콥 이인제에

<defs> 
    <path id="myTextPath" 
      d="M75,20 
      a1,1 0 0,0 100,0 
      " 
      /> 
</defs> 

<text x="10" y="100" style="stroke: #000000;"> 
    <textPath xlink:href="#myTextPath" > 
     Text along a curved path... 
    </textPath> 
</text> 

크레딧 nkov!