-
Notifications
You must be signed in to change notification settings - Fork 3
/
hex_functions.py
426 lines (350 loc) · 12.1 KB
/
hex_functions.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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
import re
import binascii
import os
import math
from prettytable import PrettyTable
def data_splitter(data):
"""
splits the binary data into a list with delimiter ESC = b'\x1b'
"""
data_split = re.split(b'\x1b', data)
if data_split[0] == b'':
data_split = re.split(b'\x1b', data)
if data_split[0] == b'':
del data_split[0:1]
for x in range(len(data_split)):
data_split[x] = b'\x1b' + data_split[x]
else:
for x in range(len(data_split)):
data_split[x] = b'\x1b' + data_split[x]
else:
for y in range(len(data_split)):
if y == 0:
data_split[y] = data_split[y]
else:
data_split[y] = b'\x1b' + data_split[y]
return data_split
def split_prn(printername, filepath, outputfolder='prns'):
"""
load a prn file and splits it into a header, body and footer file
specify printername, original prn filepath and the desired outputfolder.
Splits the prn file is three sections, header, body and footer, which can be loaded later on
to create a custom prn file.
File is saved as: <outputfolder>/<printername>/<printername>-[section].prn
"""
file = filepath
file_pref = outputfolder + '/' + printername + '/' + printername
# load hex file
with open(file, 'rb') as f:
data = f.read()
data_hex = binascii.hexlify(data)
# end load
data_split = data_splitter(data)
# for y in data_split:
# print(y)
# print(data_split)
endbody = []
for i in range(len(data_split) - 1):
if data_split[i][2:3] == b'\x47':
startbody = i
if data_split[i][2:3] == b'\x76':
endbody.append(i)
if data_split[i][-1:] == b'\x0c' and data_split[i + 1][1:2] == b'\x40':
startfooter = i + 1
#
if not os.path.exists(outputfolder):
os.makedirs(outputfolder)
if not os.path.exists(os.path.join(outputfolder, printername)):
os.makedirs(os.path.join(outputfolder, printername))
# get header file
header = b''
for x in range(0, startbody):
header += data_split[x]
# print(header)
# end header
# write header file
f = open(file_pref + '-header.prn', 'wb')
f.write(header)
f.close()
# end write header3
# get body till ESC i
body = b''
for x in range(startbody, endbody[0]):
body += data_split[x]
# print(body)
# end body
f = open(file_pref + '-body.prn', 'wb')
f.write(body)
f.close()
# end write body
# get footer
footer = b''
for x in range((len(data_split) - 3), len(data_split)):
footer += data_split[x]
# end footer
f = open(file_pref + '-footer.prn', 'wb')
f.write(footer)
f.close()
# end write footer
print('Splitting Done!')
def print_hex(hbyte):
"""
print a hexadecimal byte in ascii
"""
if hbyte == b'\x00':
out = '00'
else:
out = binascii.b2a_hex(hbyte).decode('utf-8')
def encrypt(string, length):
return ' '.join(string[i:i+length] for i in range(0,len(string),length))
return encrypt(out,2)
def str_hex(letter):
"""
convert ascii characters to their hex representative
"""
return letter.encode()
def dec_hex(getal):
"""
convert dec characters to their hex representative
"""
return bytes([int(getal)])
def hex_dec(hexbyte):
"""
convert hex to dec
"""
return ord(hexbyte)
def num_hex(input1):
"""
convert 2 digit number to hex
"""
return bytearray.fromhex(str(input1).zfill(2))
def bin_hex(binstr):
"""
convert binary string to hex string
"""
return bytes([int(binstr, 2)])
def save_prn_file(input, filename, folder=''):
"""
Save input as a file (write binary)
"""
if folder == '':
path = filename
else:
path = folder + '/' + filename
if not os.path.exists(folder):
os.makedirs(folder)
fx = open(path, 'wb')
fx.write(input)
fx.close()
def load_prn_file(filename):
"""
load file (read binary)
"""
with open(filename, 'rb') as f:
data = f.read()
return data
def createnozzlelist(nozzles, activen, spacing, firstnozzle=1):
"""
create an evenly spaced list with ones and zeros
"""
list = [0] * nozzles
for x in range(activen):
list[x * (spacing + 1) + firstnozzle] = 1
return list
def createnozzlelistsp(nozzles, nozzlelist, firstnozzle=0):
"""
create a nozzlelist, takes a list of active nozzles and converts this to ones and zeros on the specified places
"""
list = [0] * nozzles
for x in nozzlelist:
list[x + firstnozzle] = 1
return list
def um_in(input):
"""
convert micrometers to inches
"""
return 1 / 25400 * input
def in_um(input):
"""
convert inches to micrometers
"""
return input * 25400
def rsf(num, sig_figs=5):
"""
Round to specified number of sigfigs
"""
if num != 0:
return round(num, -int(math.floor(math.log10(abs(num))) - (sig_figs - 1)))
else:
return 0 # Can't take the log of 0
def body_viewer(data):
"""
view a prn file, in hexadecimal bytes. Values need to be converted to decimals for calculations.
Only view, like perl script: parse-escp2
"""
# split data
body_split = data_splitter(data)
# init table
t = PrettyTable(['Command', 'hex format', 'Description'])
t.align = "l"
# define strings for table
c_escbG = ['ESC ( G ', ' ( G nL nH m']
c_escbU = ['ESC ( U ', ' ( U nL nH P V H mL mH']
c_escbK = ['ESC ( K ', ' ( K nL nH m n']
c_escbi = ['ESC ( i ', ' ( i nL nH n']
c_escU = ['ESC U ', ' U n']
c_escbe = ['ESC ( e ', ' ( e nL nH m d']
c_escbD = ['ESC ( D ', ' ( D nL nH rL rH v h']
c_escbC = ['ESC ( C ', ' ( C nL nH m1 m2 m3 m4']
c_escbc = ['ESC ( c ', ' ( c nL nH t1 t2 t3 t4 b1 b2 b3 b4']
c_escbS = ['ESC ( S ', ' ( S nL nH w1 w2 w3 w4 l1 l2 l3 l4']
c_escbm = ['ESC ( m ', ' ( m nL nH n']
empty_row = ['', '', '']
# add/fill table rows
for x in range(len(body_split)):
if body_split[x][0:1] != b'\x1b':
print('Error! body.prn in wrong format!')
# ESC ( G ...
elif body_split[x][2:3] == b'G':
seq = ''
for y in range(len(body_split[x])):
seq += print_hex(body_split[x][y:y + 1]) + ' '
nL = body_split[x][3]
nH = body_split[x][4]
m = body_split[x][5]
# d_escbG = [c_escbG, seq,'Selecting graphics mode', c_escbG +' nL nH m']
t.add_row([c_escbG[0], c_escbG[1], 'Selecting graphics mode'])
t.add_row(['', seq, ''])
t.add_row(empty_row)
# ESC ( U ...
elif body_split[x][2:3] == b'U':
seq = ''
for y in range(len(body_split[x])):
seq += print_hex(body_split[x][y:y + 1]) + ' '
nL = body_split[x][3]
nH = body_split[x][4]
P = body_split[x][5]
V = body_split[x][6]
H = body_split[x][7]
mL = body_split[x][8]
mH = body_split[x][9]
t.add_row([c_escbU[0], c_escbU[1], 'Set unit (expanded)'])
t.add_row(['', seq, ''])
t.add_row(empty_row)
# ESC ( K ...
elif body_split[x][2:3] == b'K':
seq = ''
for y in range(len(body_split[x])):
seq += print_hex(body_split[x][y:y + 1]) + ' '
nL = body_split[x][3]
nH = body_split[x][4]
m = body_split[x][5]
n = body_split[x][6]
t.add_row([c_escbK[0], c_escbK[1], 'Monochrome/Color mode'])
t.add_row(['', seq, ''])
t.add_row(empty_row)
# ESC ( i ...
elif body_split[x][2:3] == b'i':
seq = ''
for y in range(len(body_split[x])):
seq += print_hex(body_split[x][y:y + 1]) + ' '
nL = body_split[x][3]
nH = body_split[x][4]
n = body_split[x][5]
t.add_row([c_escbi[0], c_escbi[1], 'MicroWeave mode'])
t.add_row(['', seq, ''])
t.add_row(empty_row)
# ESC U ...
elif body_split[x][1:2] == b'U':
seq = ''
for y in range(len(body_split[x])):
seq += print_hex(body_split[x][y:y + 1]) + ' '
n = body_split[x][2]
t.add_row([c_escU[0], c_escU[1], 'Unidirectional mode'])
t.add_row(['', seq, ''])
t.add_row(empty_row)
# ESC ( e ...
elif body_split[x][2:3] == b'e':
seq = ''
for y in range(len(body_split[x])):
seq += print_hex(body_split[x][y:y + 1]) + ' '
nL = body_split[x][3]
nH = body_split[x][4]
m = body_split[x][5]
d = body_split[x][6]
t.add_row([c_escbe[0], c_escbe[1], 'Select dot size'])
t.add_row(['', seq, ''])
t.add_row(empty_row)
# ESC ( D ...
elif body_split[x][2:3] == b'D':
seq = ''
for y in range(len(body_split[x])):
seq += print_hex(body_split[x][y:y + 1]) + ' '
nL = body_split[x][3]
nH = body_split[x][4]
rL = body_split[x][5]
rH = body_split[x][6]
v = body_split[x][7]
h = body_split[x][8]
t.add_row([c_escbD[0], c_escbD[1], 'Set raster resolution'])
t.add_row(['', seq, ''])
t.add_row(empty_row)
# ESC ( C ...
elif body_split[x][2:3] == b'C':
nL = body_split[x][3]
nH = body_split[x][4]
m1 = body_split[x][5]
m2 = body_split[x][6]
m3 = body_split[x][7]
m4 = body_split[x][8]
t.add_row([c_escbC[0], c_escbC[1], 'Set page length'])
t.add_row(['', seq, ''])
t.add_row(empty_row)
# ESC ( c ...
elif body_split[x][2:3] == b'c':
seq = ''
for y in range(len(body_split[x])):
seq += print_hex(body_split[x][y:y + 1]) + ' '
nL = body_split[x][3]
nH = body_split[x][4]
tL = body_split[x][5]
tH = body_split[x][6]
bL = body_split[x][7]
bH = body_split[x][8]
t.add_row([c_escbc[0], c_escbc[1], 'Set page format'])
t.add_row(['', seq, ''])
t.add_row(empty_row)
# ESC ( S nl ....
elif body_split[x][2:3] == b'S':
seq = ''
for y in range(len(body_split[x])):
seq += print_hex(body_split[x][y:y + 1]) + ' '
nL = body_split[x][3]
nH = body_split[x][4]
w1 = body_split[x][5]
w2 = body_split[x][6]
w3 = body_split[x][7]
w4 = body_split[x][8]
l1 = body_split[x][9]
l2 = body_split[x][10]
l3 = body_split[x][11]
l4 = body_split[x][12]
t.add_row([c_escbS[0], c_escbS[1], 'Set paper dimensions'])
t.add_row(['', seq, ''])
t.add_row(empty_row)
# ESC ( m ...
elif body_split[x][2:3] == b'm':
seq = ''
for y in range(len(body_split[x])):
seq += print_hex(body_split[x][y:y + 1]) + ' '
nL = body_split[x][3]
nH = body_split[x][4]
n = body_split[x][5]
t.add_row([c_escbm[0], c_escbm[1], 'Set Print method ID'])
t.add_row(['', seq, ''])
t.add_row(empty_row)
else:
print('body.prn contains unknown ESC command')
# print table
print(t)
print('Done!')