Editing an svg file -
i have svg file maps out theater seating area. draws each seat circle. change square.
here code have
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" />
if on great
you have 2 options:
use library svg http://www.svgjs.com/
manipulate text specifications. change
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>
Comments
Post a Comment