2013-07-25 120 views
0

我有一個svg文件,映射出一個劇院座位區域。目前它將每個座位畫成一個圓圈。我想將其改爲廣場。編輯svg文件

這裏是我的代碼有

id="path7" 
title="F46" 
d="m 281.9461,86.766 c -2.796,0 -5.071,-2.275 -5.071,-5.071 0,-2.796 2.275,-5.072  5.071,-5.072 2.797,0 5.072,2.276 5.072,5.072 0,2.796 -2.275,5.071 -5.072,5.071 z" 
inkscape:connector-curvature="0" 
fill="#CDCDCD" 
stroke="#CDCDCD" 
stroke-width="3" /> 

如果有人可以幫助在這一點,將是巨大的

+0

可以請您提供codepen/jsfidd樂? – CodeWizard

+0

如果您的用戶代理是inkscape,您可以在輸出文件中編輯'd = .......'。如果您的用戶代理是Raphel,D3.js或svgjs,則更新創建此圓的函數。 –

回答

0

你有兩種選擇:

  1. 使用庫SVG http://www.svgjs.com/

  2. 按規格操作文本。 改變d=m 281.9461, 86.766 c <List of Coordinates>
    d=m 281.9461, 86.766 c <top left coord>, <top right coord>, <bottom right coord>, <bottom left coord>