From dfbe6f9c0f12be693454390f5e92bb3dd06661cf Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Fri, 6 Apr 2018 19:55:53 -0400 Subject: embroider_input.py: input extension to read embroidery formats --- embroider_input.py | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 embroider_input.py (limited to 'embroider_input.py') diff --git a/embroider_input.py b/embroider_input.py new file mode 100644 index 00000000..39a0e424 --- /dev/null +++ b/embroider_input.py @@ -0,0 +1,51 @@ +import sys +from libembroidery import * +from inkex import etree +import inkex +from inkstitch import PIXELS_PER_MM, _ +from inkstitch.stitch_plan import StitchPlan +from inkstitch.svg import render_stitch_plan + + +def pattern_stitches(pattern): + stitch_pointer = pattern.stitchList + while stitch_pointer: + yield stitch_pointer.stitch + stitch_pointer = stitch_pointer.next + + +def main(embroidery_file): + pattern = embPattern_create() + embPattern_read(pattern, embroidery_file) + embPattern_flipVertical(pattern) + + stitch_plan = StitchPlan() + color_block = None + current_color = None + + for stitch in pattern_stitches(pattern): + if stitch.color != current_color: + thread = embThreadList_getAt(pattern.threadList, stitch.color) + color = thread.color + color_block = stitch_plan.new_color_block((color.r, color.g, color.b)) + current_color = stitch.color + + if not stitch.flags & END: + color_block.add_stitch(stitch.xx * PIXELS_PER_MM, stitch.yy * PIXELS_PER_MM, + jump=stitch.flags & JUMP, + stop=stitch.flags & STOP, + trim=stitch.flags & TRIM) + + dimensions = stitch_plan.dimensions + svg = etree.Element("svg", nsmap=inkex.NSS, attrib= + { + "width": "%s" % dimensions[0], + "height": "%s" % dimensions[1], + "viewBox": "0 0 %s %s" % dimensions, + }) + render_stitch_plan(svg, stitch_plan) + + print etree.tostring(svg) + +if __name__ == '__main__': + sys.exit(main(*sys.argv[1:])) -- cgit v1.2.3 From ea6f4e500a126fa30c8679db05116f7356eb06d0 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Tue, 10 Apr 2018 20:11:47 -0400 Subject: rename layer on import and remove id --- embroider_input.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'embroider_input.py') diff --git a/embroider_input.py b/embroider_input.py index 39a0e424..e3a7b0c2 100644 --- a/embroider_input.py +++ b/embroider_input.py @@ -1,8 +1,9 @@ import sys +import os from libembroidery import * from inkex import etree import inkex -from inkstitch import PIXELS_PER_MM, _ +from inkstitch import PIXELS_PER_MM, INKSCAPE_LABEL, _ from inkstitch.stitch_plan import StitchPlan from inkstitch.svg import render_stitch_plan @@ -45,6 +46,11 @@ def main(embroidery_file): }) 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__']") + layer.set(INKSCAPE_LABEL, os.path.basename(embroidery_file)) + layer.attrib.pop('id') + print etree.tostring(svg) if __name__ == '__main__': -- cgit v1.2.3 From 28e2250d8c937e1c7dcd114b6392b1a0f90251da Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Tue, 10 Apr 2018 20:43:09 -0400 Subject: embroidery origin at canvas center and size canvas accordingly --- embroider_input.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'embroider_input.py') diff --git a/embroider_input.py b/embroider_input.py index e3a7b0c2..04d79d4f 100644 --- a/embroider_input.py +++ b/embroider_input.py @@ -37,12 +37,12 @@ def main(embroidery_file): stop=stitch.flags & STOP, trim=stitch.flags & TRIM) - dimensions = stitch_plan.dimensions + extents = stitch_plan.extents svg = etree.Element("svg", nsmap=inkex.NSS, attrib= { - "width": "%s" % dimensions[0], - "height": "%s" % dimensions[1], - "viewBox": "0 0 %s %s" % dimensions, + "width": str(extents[0] * 2), + "height": str(extents[1] * 2), + "viewBox": "0 0 %s %s" % (extents[0] * 2, extents[1] * 2), }) render_stitch_plan(svg, stitch_plan) @@ -51,6 +51,10 @@ def main(embroidery_file): layer.set(INKSCAPE_LABEL, os.path.basename(embroidery_file)) 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) if __name__ == '__main__': -- cgit v1.2.3