1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
|
#!/usr/bin/env python
"""
synfig_prepare.py
Simplifies SVG files in preparation for sif export.
Copyright (C) 2011 Nikita Kitaev
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
"""
import os, tempfile
import inkex
from inkex import NSS, addNS, etree, errormsg
import simplepath, simplestyle, simpletransform
###### Utility Classes ####################################
class MalformedSVGError(Exception):
"""Raised when the SVG document is invalid or contains unsupported features"""
def __init__(self, value):
self.value = value
def __str__(self):
return """SVG document is invalid or contains unsupported features
Error message: %s
The SVG to Synfig converter is designed to handle SVG files that were created using Inkscape. Unsupported features are most likely to occur in SVG files written by other programs.
""" % repr(self.value)
try:
from subprocess import Popen, PIPE
bsubprocess = True
except:
bsubprocess = False
class InkscapeActionGroup(object):
"""A class for calling Inkscape to perform operations on a document"""
def __init__(self, svg_document=None):
self.command = ""
self.init_args = ""
self.has_selection = False
self.has_action = False
self.svg_document = svg_document
def set_svg_document(self, svg_document):
"""Set the SVG document that Inkscape will operate on"""
self.svg_document = svg_document
def set_init_args(self, cmd):
"""Set the initial arguments to Inkscape subprocess
Can be used to pass additional arguments to Inkscape, or an initializer
command (e.g. unlock all objects before proceeding).
"""
self.init_args = cmd
def clear(self):
"""Clear all actions"""
self.command = ""
self.has_action = False
self.has_selection = False
def verb(self, verb):
"""Run an Inkscape verb
For a list of verbs, run `inkscape --verb-list`
"""
if self.has_selection:
self.command += "--verb=%s " % (verb)
if not self.has_action:
self.has_action = True
def select_id(self, object_id):
"""Select object with given id"""
self.command += "--select='%s' " % (object_id)
if not self.has_selection:
self.has_selection = True
def select_node(self, node):
"""Select the object represented by the SVG node
Selection will fail if node has no id attribute
"""
node_id = node.get("id", None)
if node_id is None:
raise MalformedSVGError, "Node has no id"
self.select_id(node_id)
def select_nodes(self, nodes):
"""Select objects represented by SVG nodes
Selection will fail if any node has no id attribute
"""
for node in nodes:
self.select_node(node)
def select_xpath(self, xpath, namespaces=NSS):
"""Select objects matching a given XPath expression
Selection will fail if any matching node has no id attribute
"""
nodes = self.svg_document.xpath(xpath, namespaces=namespaces)
self.select_nodes(nodes)
def deselect(self):
"""Deselect all objects"""
if self.has_selection:
self.verb("EditDeselect")
self.has_selection = False
def run_file(self, filename):
"""Run the actions on a specific file"""
if not self.has_action:
return
cmd = self.init_args + " " + self.command + "--verb=FileSave --verb=FileQuit"
if bsubprocess:
p = Popen('inkscape "%s" %s' % (filename, cmd), shell=True, stdout=PIPE, stderr=PIPE)
rc = p.wait()
f = p.stdout
err = p.stderr
else:
_, f, err = os.popen3( "inkscape %s %s" % ( filename, cmd ) )
f.close()
err.close()
def run_document(self):
"""Run the actions on the svg xml tree"""
if not self.has_action:
return self.svg_document
# First save the document
svgfile = tempfile.mktemp(".svg")
self.svg_document.write(svgfile)
# Run the action on the document
self.run_file(svgfile)
# Open the resulting file
stream = open(svgfile, 'r')
new_svg_doc = etree.parse(stream)
stream.close()
# Clean up.
try:
os.remove(svgfile)
except Exception:
pass
# Set the current SVG document
self.svg_document = new_svg_doc
# Return the new document
return new_svg_doc
class SynfigExportActionGroup(InkscapeActionGroup):
"""An action group with stock commands designed for Synfig exporting"""
def __init__(self, svg_document=None):
InkscapeActionGroup.__init__(self, svg_document)
self.set_init_args("--verb=UnlockAllInAllLayers")
self.objects_to_paths()
self.unlink_clones()
def objects_to_paths(self):
"""Convert unsupported objects to paths"""
# Flow roots contain rectangles inside them, so they need to be
# converted to paths separately from other shapes
self.select_xpath("//svg:flowRoot", namespaces=NSS)
self.verb("ObjectToPath")
self.deselect()
non_paths = [
"svg:rect",
"svg:circle",
"svg:ellipse",
"svg:line",
"svg:polyline",
"svg:polygon",
"svg:text"
]
# Build an xpath command to select these nodes
xpath_cmd = " | ".join(["//" + np for np in non_paths])
# Select all of these elements
# Note: already selected elements are not deselected
self.select_xpath(xpath_cmd, namespaces=NSS)
# Convert them to paths
self.verb("ObjectToPath")
self.deselect()
def unlink_clones(self):
"""Unlink clones (remove <svg:use> elements)"""
self.select_xpath("//svg:use", namespaces=NSS)
self.verb("EditUnlinkClone")
self.deselect()
###### Utility Functions ##################################
### Path related
def fuse_subpaths(path_node):
"""Fuse subpaths of a path. Should only be used on unstroked paths"""
path_d = path_node.get("d", None)
path = simplepath.parsePath(path_d)
if len(path) == 0:
return
i = 0
initial_point = [ path[i][1][-2], path[i][1][-1] ]
return_stack = []
while i < len(path):
# Remove any terminators: they are redundant
if path[i][0] == "Z":
path.remove(["Z", []])
continue
# Skip all elements that do not begin a new path
if i == 0 or path[i][0] != "M":
i += 1
continue
# This element begins a new path - it should be a moveto
assert(path[i][0] == 'M')
# Swap it for a lineto
path[i][0] = 'L'
# If the old subpath has not been closed yet, close it
if path[i-1][1][-2] != initial_point[0] or path[i-1][1][-2] != initial_point[1]:
path.insert(i, ['L', initial_point])
i += 1
# Set the initial point of this subpath
initial_point = [ path[i-1][1][-2], path[i-1][1][-1] ]
# Append this point to the return stack
return_stack.append(initial_point)
#end while
# Now pop the entire return stack
while return_stack != []:
el = ['L', return_stack.pop()]
path.insert(i, el)
i += 1
path_d = simplepath.formatPath(path)
path_node.set("d", path_d)
def split_fill_and_stroke(path_node):
"""Split a path into two paths, one filled and one stroked
Returns a the list [fill, stroke], where each is the XML element of the
fill or stroke, or None.
"""
style = simplestyle.parseStyle(path_node.get("style", ""))
# If there is only stroke or only fill, don't split anything
if "fill" in style.keys() and style["fill"] == "none":
if "stroke" not in style.keys() or style["stroke"] == "none":
return [None, None] # Path has neither stroke nor fill
else:
return [None, path_node]
if "stroke" not in style.keys() or style["stroke"] == "none":
return [path_node, None]
group = path_node.makeelement(addNS("g", "svg"))
fill = etree.SubElement(group, addNS("path", "svg"))
stroke = etree.SubElement(group, addNS("path", "svg"))
attribs = path_node.attrib
if "d" in attribs.keys():
d = attribs["d"]
del attribs["d"]
else:
raise AssertionError, "Cannot split stroke and fill of non-path element"
if addNS("nodetypes", "sodipodi") in attribs.keys():
nodetypes = attribs[addNS("nodetypes", "sodipodi")]
del attribs[addNS("nodetypes", "sodipodi")]
else:
nodetypes = None
if "id" in attribs.keys():
path_id = attribs["id"]
del attribs["id"]
else:
path_id = str(id(path_node))
if "style" in attribs.keys():
del attribs["style"]
if "transform" in attribs.keys():
transform = attribs["transform"]
del attribs["transform"]
else:
transform = None
# Pass along all remaining attributes to the group
for attrib_name in attribs.keys():
group.set(attrib_name, attribs[attrib_name])
group.set("id", path_id)
# Next split apart the style attribute
style_group = {}
style_fill = {"stroke":"none", "fill":"#000000"}
style_stroke = {"fill":"none", "stroke":"none"}
for key in style.keys():
if key.startswith("fill"):
style_fill[key] = style[key]
elif key.startswith("stroke"):
style_stroke[key] = style[key]
elif key.startswith("marker"):
style_stroke[key] = style[key]
elif key.startswith("filter"):
style_group[key] = style[key]
else:
style_fill[key] = style[key]
style_stroke[key] = style[key]
if len(style_group) != 0:
group.set("style", simplestyle.formatStyle(style_group))
fill.set("style", simplestyle.formatStyle(style_fill))
stroke.set("style", simplestyle.formatStyle(style_stroke))
# Finalize the two paths
fill.set("d", d)
stroke.set("d", d)
if nodetypes is not None:
fill.set(addNS("nodetypes", "sodipodi"), nodetypes)
stroke.set(addNS("nodetypes", "sodipodi"), nodetypes)
fill.set("id", path_id+"-fill")
stroke.set("id", path_id+"-stroke")
if transform is not None:
fill.set("transform", transform)
stroke.set("transform", transform)
# Replace the original node with the group
path_node.getparent().replace(path_node, group)
return [fill, stroke]
### Object related
def propagate_attribs(node, parent_style={}, parent_transform=[[1.0, 0.0, 0.0], [0.0, 1.0, 0.0]]):
"""Propagate style and transform to remove inheritance"""
# Don't enter non-graphical portions of the document
if (node.tag == addNS("namedview", "sodipodi")
or node.tag == addNS("defs", "svg")
or node.tag == addNS("metadata", "svg")
or node.tag == addNS("foreignObject", "svg")):
return
# Compose the transformations
if node.tag == addNS("svg", "svg") and node.get("viewBox"):
vx, vy, vw, vh = [get_dimension(x) for x in node.get("viewBox").split()]
dw = get_dimension(node.get("width", vw))
dh = get_dimension(node.get("height", vh))
t = "translate(%f, %f) scale(%f, %f)" % (-vx, -vy, dw/vw, dh/vh)
this_transform = simpletransform.parseTransform(t, parent_transform)
this_transform = simpletransform.parseTransform(node.get("transform"), this_transform)
del node.attrib["viewBox"]
else:
this_transform = simpletransform.parseTransform(node.get("transform"), parent_transform)
# Compose the style attribs
this_style = simplestyle.parseStyle(node.get("style", ""))
remaining_style = {} # Style attributes that are not propagated
non_propagated = ["filter"] # Filters should remain on the topmost ancestor
for key in non_propagated:
if key in this_style.keys():
remaining_style[key] = this_style[key]
del this_style[key]
# Create a copy of the parent style, and merge this style into it
parent_style_copy = parent_style.copy()
parent_style_copy.update(this_style)
this_style = parent_style_copy
# Merge in any attributes outside of the style
style_attribs = ["fill", "stroke"]
for attrib in style_attribs:
if node.get(attrib):
this_style[attrib] = node.get(attrib)
del node.attrib[attrib]
if (node.tag == addNS("svg", "svg")
or node.tag == addNS("g", "svg")
or node.tag == addNS("a", "svg")
or node.tag == addNS("switch", "svg")):
# Leave only non-propagating style attributes
if len(remaining_style) == 0:
if "style" in node.keys():
del node.attrib["style"]
else:
node.set("style", simplestyle.formatStyle(remaining_style))
# Remove the transform attribute
if "transform" in node.keys():
del node.attrib["transform"]
# Continue propagating on subelements
for c in node.iterchildren():
propagate_attribs(c, this_style, this_transform)
else:
# This element is not a container
# Merge remaining_style into this_style
this_style.update(remaining_style)
# Set the element's style and transform attribs
node.set("style", simplestyle.formatStyle(this_style))
node.set("transform", simpletransform.formatTransform(this_transform))
### Style related
def get_dimension(s="1024"):
"""Convert an SVG length string from arbitrary units to pixels"""
if s == "":
return 0
try:
last = int(s[-1])
except:
last = None
if type(last) == int:
return float(s)
elif s[-1] == "%":
return 1024
elif s[-2:] == "px":
return float(s[:-2])
elif s[-2:] == "pt":
return float(s[:-2])*1.25
elif s[-2:] == "em":
return float(s[:-2])*16
elif s[-2:] == "mm":
return float(s[:-2])*3.54
elif s[-2:] == "pc":
return float(s[:-2])*15
elif s[-2:] == "cm":
return float(s[:-2])*35.43
elif s[-2:] == "in":
return float(s[:-2])*90
else:
return 1024
###### Main Class #########################################
class SynfigPrep(inkex.Effect):
def effect(self):
"""Transform document in preparation for exporting it into the Synfig format"""
a = SynfigExportActionGroup(self.document)
self.document = a.run_document()
# Remove inheritance of attributes
propagate_attribs(self.document.getroot())
# Fuse multiple subpaths in fills
for node in self.document.xpath('//svg:path', namespaces=NSS):
if node.get("d", "").lower().count("m") > 1:
# There are multiple subpaths
fill = split_fill_and_stroke(node)[0]
if fill is not None:
fuse_subpaths(fill)
if __name__ == '__main__':
try:
e = SynfigPrep()
e.affect()
except MalformedSVGError, e:
errormsg(e)
# vim: expandtab shiftwidth=4 tabstop=8 softtabstop=4 fileencoding=utf-8 textwidth=99
|