Python拼图

之前一直会碰到拼二维码什么的,总是浪费很多时间最近看到一个大师傅的一个想法,通过图片的修改时间来拼图Orz

主要是os模块对文件的操作

1
2
3
4
5
6
7
8
9
10
import os
import time
file='1.mp4'
os.path.getatime(file) #输出最近访问时间1318921018.0
os.path.getctime(file) #输出文件创建时间
os.path.getmtime(file) #输出最近修改时间
time.gmtime(os.path.getmtime(file)) #以struct_time形式输出最近修改时间
os.path.getsize(file) #输出文件大小(字节为单位)
os.path.abspath(file) #输出绝对路径'/Volumes/Leopard/Users/Caroline/Desktop/1.mp4'
os.path.normpath(file) #输出'/Volumes/Leopard/Users/Caroline/Desktop/1.mp4'

比如说这样一大堆的拼图

手动拼肯定人都要没了,基于时间考虑就是默认认为图片碎片生成的时间是有规律的,从上往下,由左至右
我们利用os.path.getmtime(file) #输出最近修改时间即可快速完成

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
# coding=utf-8
import os
from PIL import Image

path = "./all/"
def get_file_list(file_path):
dir_list = os.listdir(file_path)
if not dir_list:
return
else:
dir_list = sorted(dir_list, key=lambda x: os.path.getmtime(os.path.join(file_path, x)))
print(dir_list)
return dir_list
list_im = get_file_list(path)
column = 6
row_num = 6
width = 51
height = 51
imgs = [Image.open(path+i) for i in list_im]
target = Image.new('RGB', (width*column, height*row_num))
for i in range(len(list_im)):
if i % column == 0:
end = len(list_im) if i + column > len(list_im) else i + column
for col, image in enumerate(imgs[i:i+column]):
target.paste(image, (width*col, height*(i//column),
width*(col + 1), height*(i//column + 1)))
target.show()


Orz

2019121

又出现了,这回要自己改一下长度和后缀,容易改乱了

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
import os
from PIL import Image

path = "./result/"
def get_file_list(file_path):
dir_list = os.listdir(file_path)
if not dir_list:
return
else:
dir_list = sorted(dir_list, key=lambda x: os.path.getmtime(os.path.join(file_path, x)))
print(dir_list)
return dir_list

list_im = get_file_list(path)
column = 6
row_num = 6
width = 134
height = 134

for i in list_im:
os.rename(path+i,path+i+'.png')
img = Image.open(path+i+'.png')
out = img.resize((width, height),Image.ANTIALIAS)
os.remove(path+i+'.png')
out.save(path+i+'.png', 'png')



imgs = [Image.open(path+i+'.png') for i in list_im]
target = Image.new('RGB', (width*column, height*row_num))
for i in range(len(list_im)):
if i % column == 0:
end = len(list_im) if i + column > len(list_im) else i + column
for col, image in enumerate(imgs[i:i+column]):
target.paste(image, (width*col, height*(i//column),
width*(col + 1), height*(i//column + 1)))

target.show()