-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathstitchconv.py
executable file
·135 lines (117 loc) · 3.27 KB
/
stitchconv.py
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
#!/usr/bin/env python
#######################################
#
# manipulate and process EXP files
#
# author:(c) Michael Aschauer <m AT ash.to>
# www: http:/m.ash.to
# licenced under: GPL v3
# see: http://www.gnu.org/licenses/gpl.html
#
#######################################
import stitchcode
import getopt
import sys
def usage():
print """
usage: stitchconv.py [options] -i INPUT-FILE -o OUTPUT-FILE
Embroidery file conversion and manipulation.
input supported: Melco/EXP, Brother/PES, SVG (partly)
output supported: Melco/EXP, PNG, SVG, Brother/PES (partly)
options:
-h, --help print usage
-i, --input=FILE input file
-o, --output=FILE output file
-z, --zoom=FACTOR zoom in/out
-t, --to-triples convert to triple stitches
-r, --to-red-work convert to red work stitches
-s, --show-stitches show stitches (PNG only)
-j, --show-jumps show jump stitches (PNG only)
-x, --show-info show image info on commandline (size, etc..)
-d, --distance=VALUES distance of triple/redwork stitches in mm
-f, --flatten flatten embroidery (clamp too long stitches)
-v, --verbose be verbose
"""
infile = "";
outfile = "";
zoom = 1
distance = 0.3
to_triple_stitches = False
to_red_work = False
show_stitches = False
flatten = False
show_info = False
show_jumps = False
verbose = False
def process_args():
global infile, outfile, zoom
global to_triple_stitches
global to_red_work
global distance, show_stitches, show_jumps
global flatten, show_info
global verbose
try:
opts, args = getopt.getopt(sys.argv[1:], "hi:o:z:trd:sfxjv",
["help", "input=","output=","zoom=","to-triples","to-red-work","show-stitches",
"distance", "flatten", "show-info", "show-jumps","verbose"])
except getopt.GetoptError, err:
# print help information and exit:
print str(err) # will print something like "option -a not recognized"
usage()
sys.exit(2)
for o, a in opts:
if o in ("-h", "--help"):
usage()
sys.exit()
elif o in ("-o", "--output"):
outfile = a
elif o in ("-i", "--input"):
infile = a
elif o in ("-z", "--zoom"):
zoom = float(a)
elif o in ("-t", "--to-triples"):
to_triple_stitches = True
elif o in ("-r", "--to-red_work"):
to_red_work = True
elif o in ("-d", "--distance"):
distance = float(a)
elif o in ("-s", "--show-stitch"):
show_stitches = True
elif o in ("-f", "--flatten"):
flatten = True
elif o in ("-x", "--show-info"):
show_info = True
elif o in ("-j", "--show-jumps"):
show_jumps = True
elif o in ("-v", "--verbose"):
verbose = True
else:
usage();
sys.exit()
if len(infile) == 0:
print "options required."
usage()
sys.exit(2)
if __name__ == '__main__':
process_args()
emb = stitchcode.Embroidery()
emb.load(infile)
emb.scale(zoom)
emb.translate_to_origin()
if to_triple_stitches:
if (verbose):
print "convert to triple stitches"
emb.to_triple_stitches(distance*10)
if to_red_work:
if (verbose):
print "convert to red work stitches"
emb.to_red_work(distance*10)
if flatten:
emb.flatten()
if outfile:
if show_stitches and (outfile[-3:]).lower() == "png":
emb.save_as_png(outfile, show_stitches)
else:
emb.save(outfile)
if show_info:
print emb.info()