-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathline and qr fix-v3.py
249 lines (205 loc) · 8.86 KB
/
line and qr fix-v3.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
'''
Author: 木白广木林
Date: 2023-11-29 10:45:20
LastEditors: Do not edit
LastEditTime: 2023-12-05 16:23:14
FilePath: \py\line and qr fix-v3.py
'''
'''
_oo0oo_
o8888888o
88" . "88
(| -_- |)
0\ = /0
___/`---'\___
.' \\| |// '.
/ \\||| : |||// \
/ _||||| -:- |||||- \
| | \\\ - /// | |
| \_| ''\---/'' |_/ |
\ .-\__ '-' ___/-. /
___'. .' /--.--\ `. .'___
."" '< `.___\_<|>_/___.' >' "".
| | : `- \`.;`\ _ /`;.`/ - ` : | |
\ \ `_. \_ __\ /__ _/ .-` / /
=====`-.____`.___ \_____/___.-`___.-'=====
`=---='
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
佛祖保佑 永不宕机 永无BUG
'''
import os
import qrcode
import time
import datetime
# from PIL import Image, ImageDraw, ImageFont
from PIL import Image, ImageDraw, ImageFont,ImageWin
import win32print
import win32ui
#去除全局警告信息{控制台}
import warnings
warnings.filterwarnings("ignore")
# 二维码储存路径
path1=r'E:\360MoveData\Users\bai\Desktop\py\XXX'
# 年-月-日 时:分:秒
now_time1 = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
# 年
year1 =datetime.datetime.now().strftime('%Y')
# 年-月
month1 = datetime.datetime.now().strftime('%Y-%m')
# 年-月-日
day1 = datetime.datetime.now().strftime('%Y-%m-%d')
foldername1 ="\\"+year1+"\\"+month1+"\\"+day1
#图片拼接
def comb(png1, png2, style='horizontal'):
img1, img2 = Image.open(png1), Image.open(png2)
# 统一图片尺寸,可以自定义设置(宽,高)
img1 = img1.resize((550, 200), Image.ANTIALIAS) #以第一张图片高度为准
img2 = img2.resize((100, 100), Image.ANTIALIAS)
size1, size2 = img1.size, img2.size
if style == 'horizontal':
joint = Image.new('RGB', (size1[0] + size2[0], size1[1]))
loc1, loc2 = (100, 0), (0, 50)
joint.paste(img1, loc1)
joint.paste(img2, loc2)
joint.save('putout.png')
elif style == 'vertical':
joint = Image.new('RGB', (size1[0], size1[1] + size2[1]))
loc1, loc2 = (100, 0), (50,0)
joint.paste(img1, loc1)
joint.paste(img2, loc2)
joint.save('putout1.png')
#每日新建文件夹
def create_folder(path): #创建函数
# 年-月-日 时:分:秒
now_time = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
# 年
year =datetime.datetime.now().strftime('%Y')
# 年-月
month = datetime.datetime.now().strftime('%Y-%m')
# 年-月-日
day = datetime.datetime.now().strftime('%Y-%m-%d')
# 时:分:秒
# hour = datetime.datetime.now().strftime("%H:%M:%S")
# print(now_time + "\n"+day + "\n" + hour)
foldername = path+"\\"+year+"\\"+month+"\\"+day
# print(pwd)
# 文件路径
word_name = os.path.exists(foldername)
# 判断文件是否存在:不存在创建
if not word_name:
os.makedirs(foldername)
if __name__=='__main__':
path=r'E:\360MoveData\Users\bai\Desktop\py\XXX' # 文件夹建立位置
create_folder(path) #每日按日期新建文件夹
date = time.strftime("%Y%m%d") #路径时间字符
dateout = time.strftime("%m-%d-%HH")
file_path = 'Y:\spu_'+ date +'.log' # 数据读取文件路径
last_modified = os.stat(file_path).st_mtime # 获取文件的修改时间
count = ''
#新版计数器
while True:
# print('请输入当前产品序号:') #input不可连接中文
count = int(input('请输入当前产品序号:'))
try:
if int(count)>0:
print('当前产品序列号为:' + str(count))
count-= 1 #初始值减一,下方循环加一
break
if int(count)<0:
print('序列号不为负数!')
pass
if int(count) == 0: #=0不合语法
print('序列号不为0!')
pass
except:
print('请输入整数!')
pass
while True:
# 检查文件的修改时间是否有变化
if os.stat(file_path).st_mtime != last_modified:
last_modified = os.stat(file_path).st_mtime
with open(file_path, 'r') as file:
file.seek(0)
last_line = ''
line1 = ''
for line in file:
last_line = line.rstrip() # 去除行尾的换行符
if " iO" in last_line: #前方加空格,防止nio干扰
count += 1 #计数器循环加一
print(last_line)
with open('output.txt', 'w') as file: # 打开一个名为output.txt的文件进行写入操作
file.write(last_line + "----" +str(count)) # 将最后一行数据写入文件,加入计数器count.---3位占位符号
line1 = last_line + "----" +str(count) #将最后一行数据写入line1 ,否则需要再次读写文件嵌套
print(line1) #增加序号后的一行数据
qr = qrcode.QRCode(
version=2,
error_correction=qrcode.constants.ERROR_CORRECT_L,
box_size=10,
border=1
)#设置二维码的大小
# qr.add_data(last_line)
qr.add_data(line1)
qr.make(fit=True)
img = qr.make_image()
line2=line1[-5:] #取后5位命名
print(line2) #二维码命名后缀
img.save(path + foldername1 + '/' + line2 + ".png") #图片命名 '/'非常重要; 绝对路径‘\\’
if __name__ == '__main__':
# 两张图片地址:
# png1 = r"./--100.png"
png2 = path + foldername1 + '/' + line2 + ".png"
png1 = r"./99999.png"
# 左右拼接
comb(png1, png2, style='horizontal')
# 上下拼接
# comb(png1, png2, style='vertical')
# 打开图片
image = Image.open('putout.png')
# 在右侧添加文字
draw = ImageDraw.Draw(image)
text = dateout + " No:" + line2
font = ImageFont.truetype('arial.ttf', 30) # 修改字体和大小
text_width, text_height = draw.textsize(text, font)
x = image.width - text_width - 280 # 文字位置,可以自行调整
y = image.height // 2 - text_height // 2
draw.text((x, y), text, font=font, fill='black')
# draw.text((x, y), text, font=font, fill='white')
# 显示图片
# image.show() #防止跳出循环不进行打印
# 保存图片
image.save('final.png')
# 使用打印机打印图片
# 列出所有打印机
# printers = [printer[2] for printer in win32print.EnumPrinters(2)]
# for i, printer in enumerate(printers):
# print(f"{i+1}: {printer}")
# 选择打印机
# choice = int(input("选择要使用的打印机 (输入对应的序号): ")) - 1
# printer_name = printers[choice]
# 获取默认打印机
printer_name = win32print.GetDefaultPrinter()
# 加载图片
image_path = r"final.png"
image = Image.open(image_path)
# 创建设备描述表
hDC = win32ui.CreateDC()
hDC.CreatePrinterDC(printer_name)
# 开始文档
hDC.StartDoc(image_path)
# 开始页面
hDC.StartPage()
# 绘制位图
dib = ImageWin.Dib(image)
dib.draw(hDC.GetHandleOutput(), (0, 0, image.width, image.height))
# 结束页面
hDC.EndPage()
# 结束文档
hDC.EndDoc()
# 删除设备描述表对象
del hDC
print("打印成功!")
else:
print(last_line) #添加不合格不合法数据
print('不合法跳过,不合格不打印')
pass
time.sleep(1) # 延迟1秒后再次检查文件的修改时间