-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgcode2images.py
executable file
·179 lines (145 loc) · 3.18 KB
/
gcode2images.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
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# by svsd_val
# jabber : [email protected]
# mail to: [email protected]
import os
import datetime
import time
import re
import sys
from PIL import Image , ImageDraw
if len(sys.argv) > 1:
path = sys.argv[1]
if not os.path.exists('layers'):
os.mkdir('layers');
f = open(path, "r");
n =0;
# setup image resolution
img_width=1440;
img_height=2560;
# get pixels in mm
pw=img_height/120.96;
# setup line width
LW = 2;
#
img = Image.new('RGB', [img_width,img_height], 0)
draw = ImageDraw.Draw(img)
data = img.load()
#
lb=[0,0];
le=(0,0);
seg=[];
currentLayerIdx = 0
currentLayerZ = 0
# first time prev command is empty
prev= {
"C":"-",
"X":0.0,
"Y":0.0,
"Z":0.0,
"F":0.0,
"E":0.0,
"T":0,
"L":0 };
def parse(l):
global prev;
global currentLayerIdx
global currentLayerZ
scmd = re.sub("\([^)]*\)", "", l.upper())
## then semicolons
symidx = scmd.find(';')
if symidx >= 0:
scmd = scmd[0:symidx].strip()
symidx = scmd.find('(')
if symidx >= 0:
scmd = scmd[0:symidx].strip();
cmd= {
"C":"-",
"X":0.0,
"Y":0.0,
"Z":0.0,
"F":0.0,
"E":0.0,
"T":0,
"L":0 };
# if scmd == "":
# cmd["C"] = "-"
# return cmd;
array = scmd.split(" ");
cmd["C"] = array[0];
for i in range(1,len(array)):
x=array[i];
if len(x) < 1:
continue;
cmd[x[:1]] = float(x[1:]);
cmdtype = "move"
if ( (cmd["X"] == prev["X"]) and (cmd["Y"] == prev["Y"]) and (cmd["E"] != prev["E"]) ):
cmdtype = "retract" if (cmd["E"] < prev["E"]) else "restore"
if ( ( (cmd["X"] != prev["X"]) or (cmd["Y"] != prev["Y"]) ) and (cmd["E"] > prev["E"]) ):
cmdtype = "extrude"
if ( (cmd["Z"] > prev["Z"]) ):
currentLayerZ = cmd["Z"]
currentLayerIdx += 1
print("currentLayerZ",currentLayerZ, " currentLayerIdx=",currentLayerIdx);
# set cmdtype and layer index for command
cmd["T"] = cmdtype
cmd["L"] = currentLayerIdx;
# save as last command, to combare with new command after...
prev = cmd
#print (cmd);
return cmd;
def seg2vec(seg):
return [ int(seg["X"] * pw ), int(seg["Y"]* pw )];
old_z=0;
layer_idx=0;
for l in f:
cmd = parse(l);
seg.append(cmd);
#if cmd["C"] == "-":
# continue;
#print(cmd);
if old_z != cmd["L"]:
#
print("Z", old_z)
old_z = cmd["L"];
#
# check if we have segments to draw..
empty=1;
for i in range(len(seg)):
if seg[i]["T"] == "extrude":
empty=0;
# if not, then
if empty:
print("skip.." , old_z)
continue
layer_idx+=1;
# Create new image with black fill
img = Image.new('RGB', [img_width,img_height], 0)
draw = ImageDraw.Draw(img)
lb= seg2vec(seg[0]);
# Draw segments:
for i in range(len(seg)):
if seg[i]["T"] != "extrude":
continue;
if (i >0):
lb=seg2vec(seg[i-1]);
le=seg2vec(seg[i]);
if lb[0] == 0 and lb[1] == 0 :
lb=le;
if le[0] == 0 and le[1] == 0 :
le=lb;
draw.line([ lb[0], lb[1], le[0],le[1] ], width=LW, fill="#FFFFFF");
# generate image id
si=str(layer_idx);
while len(si) < 7:
si="0"+si;
s="layers/layer_"+si+".png"
# save to file
print("save layer to file:"+s);
img.save(s);
# and print we got a new layer
print("New Layer");
# remove all old not needed layer segments
seg[:] = [];
f.close();