inkstitch/lib/extensions/input.py

52 wiersze
1.9 KiB
Python
Czysty Zwykły widok Historia

2018-04-29 02:29:49 +00:00
import os
2019-07-10 00:39:07 +00:00
import pyembroidery
from inkex import etree
import inkex
2019-07-10 00:39:07 +00:00
from ..stitch_plan import StitchPlan
from ..svg import PIXELS_PER_MM, render_stitch_plan
from ..svg.tags import INKSCAPE_LABEL
2018-04-29 02:29:49 +00:00
class Input(object):
def affect(self, args):
embroidery_file = args[0]
pattern = pyembroidery.read(embroidery_file)
2018-04-29 02:29:49 +00:00
stitch_plan = StitchPlan()
color_block = None
for raw_stitches, thread in pattern.get_as_colorblocks():
2019-07-07 14:25:21 +00:00
color_block = stitch_plan.new_color_block(thread)
for x, y, command in raw_stitches:
2019-07-02 16:38:48 +00:00
if command == pyembroidery.STITCH:
color_block.add_stitch(x * PIXELS_PER_MM / 10.0, y * PIXELS_PER_MM / 10.0)
2019-08-04 03:14:36 +00:00
if len(color_block) > 0:
if command == pyembroidery.TRIM:
color_block.add_stitch(trim=True)
elif command == pyembroidery.STOP:
color_block.add_stitch(stop=True)
color_block = stitch_plan.new_color_block(thread)
2018-04-29 02:29:49 +00:00
2019-07-10 00:39:07 +00:00
stitch_plan.delete_empty_color_blocks()
2019-07-07 14:25:21 +00:00
2018-04-29 02:29:49 +00:00
extents = stitch_plan.extents
2018-08-22 00:32:50 +00:00
svg = etree.Element("svg", nsmap=inkex.NSS, attrib={
"width": str(extents[0] * 2),
"height": str(extents[1] * 2),
"viewBox": "0 0 %s %s" % (extents[0] * 2, extents[1] * 2),
})
2018-04-29 02:29:49 +00:00
render_stitch_plan(svg, stitch_plan)
# rename the Stitch Plan layer so that it doesn't get overwritten by Embroider
layer = svg.find(".//*[@id='__inkstitch_stitch_plan__']")
2019-06-23 18:26:57 +00:00
layer.set(INKSCAPE_LABEL, os.path.basename(embroidery_file.decode("UTF-8")))
2018-04-29 02:29:49 +00:00
layer.attrib.pop('id')
# Shift the design so that its origin is at the center of the canvas
# Note: this is NOT the same as centering the design in the canvas!
layer.set('transform', 'translate(%s,%s)' % (extents[0], extents[1]))
print etree.tostring(svg)