在svg文件中使用python搜索和更改文本

时间:2017-05-09 14:46:31

标签: python xml svg

我使用Inkscape创建的SVG文件,现在在svg文件中是我试图改变的一些文本,但是如何? svg看起来像这样:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <svg
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:cc="http://creativecommons.org/ns#"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:svg="http://www.w3.org/2000/svg"
  xmlns="http://www.w3.org/2000/svg"
  xmlns:xlink="http://www.w3.org/1999/xlink"
  xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  width="1480"
  height="800"
  version="1.1"
  id="svg4184"
  sodipodi:docname="2017-05-03_heizung2.svg"
  inkscape:version="0.92.1 r15371">
  ...
  <g
   inkscape:groupmode="layer"
   inkscape:label="05_CURVES"
   id="g4182"
   transform="translate(0,-322.51962)"
   style="display:inline">
   ...
   <text
     xml:space="preserve"
     style="font-style:normal;font-weight:normal;font-size:37.33333206px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
     x="82.288353"
     y="920.41907"
     id="temp-bu"><tspan
       sodipodi:role="line"
       id="tspan5025-6-2-1-0"
       x="82.288353"
       y="920.41907"
       style="font-size:32px">TEXT TO CHANGE</tspan></text>
   ...
  </g>
 </svg>

我尝试使用xml.etree.ElementTree没有进入TEXT TO CHANGE ... 我也试过

from xml.dom as minidom
doc = minidom.parse('File.svg')
text = [text.getAttribute('id') for text in doc.getElementsByTagName('text')

但我没有进入要改变的文字......

我该如何改变文字

3 个答案:

答案 0 :(得分:1)

永远不要忽视暴力中固有的可能性。

>>> open('newfile.svg', 'w').write(open('temp.svg').read().replace('>TEXT TO CHANGE</tspan>','>What I meant to write</tspan>'))

结果:

altered business card

答案 1 :(得分:0)

TEXT TO CHANGE位于tspan标签

import xml.dom.minidom
doc = xml.dom.minidom.parse('File.svg')
name = doc.getElementsByTagName('tspan')
for t in name:
   if (t.attributes['id'].value=="tspan5025-6-2-1-0"):
    print [x.nodeValue for x in t.childNodes]

答案 2 :(得分:0)

总结

import xml.dom.minidom
doc = xml.dom.minidom.parse('d:\\Temp\\heizung.svg')
f = open("d:\\Temp\\heizung.svg", "w")
name = doc.getElementsByTagName('tspan')

name[0].childNodes[0].nodeValue = '100'

f.write(doc.toprettyxml())