2017-01-28 46 views
0

如何通過使用Python腳本刪除不可見對象或圖層來清理SVG文件。這些元素具有的設置以下樣式的至少一個:如何使用Python刪除SVG文件中的不可見元素?

display: none 
opacity: 0 
visibility: hidden 

我正考慮使用正則表達式模式,但考慮到XML的複雜,正則表達式通常這裏氣餒。

它是一個使用lxml的選項嗎?我可以做一些HTML修改,但我不確定SVG以及如何正確地將修改後的數據保存到文件中。

+0

你試過'lxml'嗎?你得到了什麼?顯示您的代碼和FULL錯誤消息。 – furas

+0

我沒有嘗試lxml,因爲我對此不夠了解。我甚至不知道SVG是否可行。 –

回答

0

幹過:

from lxml import etree 
doc = etree.parse('/test.svg') 
for action, el in etree.iterwalk(doc): 
    if el.attrib.get('display', None) == 'none' or el.attrib.get('visibility', None) == 'hidden' or el.attrib.get('opacity', None) == '0': 
     el.clear() 
with open('/test_out.svg', 'w') as f: 
    f.write(u'<?xml version="1.0" encoding="UTF-8"?>\n'+etree.tostring(doc, pretty_print=True)) 

我希望將捕獲的所有情況。

+1

lxml可以直接寫入xml_declation,不需要字符串集中:'f.write(etree.tostring(doc,xml_declaration = True,encoding =「utf-8」)' –

+0

謝謝!也許你對這個新問題有個想法想出了這個片段:http://stackoverflow.com/questions/41920272/strip-out-all-namespace-declarations-tags-and-attributes-from-svg-file-with-pyt –