summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2024-03-24 07:39:42 +0100
committerGitHub <noreply@github.com>2024-03-24 07:39:42 +0100
commit88278d0c0726b758719ac517a2a12a919aba6950 (patch)
tree0c31fbd1067f029b2ae0927d3b8d9cf7aca27917
parent4900c7085bd1ae4918be072e5d26a648c47c12f2 (diff)
save thread names into embroidery files (#2777)
-rw-r--r--lib/extensions/output.py2
-rw-r--r--lib/extensions/zip.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/lib/extensions/output.py b/lib/extensions/output.py
index a3f35d2f..ef542277 100644
--- a/lib/extensions/output.py
+++ b/lib/extensions/output.py
@@ -9,6 +9,7 @@ import tempfile
from ..output import write_embroidery_file
from ..stitch_plan import stitch_groups_to_stitch_plan
+from ..threads import ThreadCatalog
from .base import InkstitchExtension
@@ -56,6 +57,7 @@ class Output(InkstitchExtension):
patches = self.elements_to_stitch_groups(self.elements)
stitch_plan = stitch_groups_to_stitch_plan(patches, collapse_len=collapse_len, disable_ties=self.settings.get('laser_mode', False),
min_stitch_len=min_stitch_len)
+ ThreadCatalog().match_and_apply_palette(stitch_plan, self.metadata['thread-palette'])
temp_file = tempfile.NamedTemporaryFile(suffix=".%s" % self.file_extension, delete=False)
diff --git a/lib/extensions/zip.py b/lib/extensions/zip.py
index 6125a72e..24bfc633 100644
--- a/lib/extensions/zip.py
+++ b/lib/extensions/zip.py
@@ -56,6 +56,7 @@ class Zip(InkstitchExtension):
min_stitch_len = self.metadata['min_stitch_len_mm']
patches = self.elements_to_stitch_groups(self.elements)
stitch_plan = stitch_groups_to_stitch_plan(patches, collapse_len=collapse_len, min_stitch_len=min_stitch_len)
+ ThreadCatalog().match_and_apply_palette(stitch_plan, self.get_inkstitch_metadata()['thread-palette'])
if self.options.x_repeats != 1 or self.options.y_repeats != 1:
stitch_plan = self._make_offsets(stitch_plan)
@@ -123,7 +124,6 @@ class Zip(InkstitchExtension):
return stitch_plan.make_offsets(offsets)
def get_threadlist(self, stitch_plan, design_name):
- ThreadCatalog().match_and_apply_palette(stitch_plan, self.get_inkstitch_metadata()['thread-palette'])
thread_used = []
thread_output = "%s\n" % _("Design Details")