Search

Search IconIcon to open search

Python PIL 库

Last updated Jun 28, 2024

# 根据色彩通道数值生成图片(Misc)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from PIL import Image

f = open('timu.txt', 'r')
lines = f.readlines()
# print(len(lines)) # 160000
f.close()

height = 400
width = 400

img = Image.new("RGB", (400, 400))
cnt = 0

for l in lines:
    l = l.strip()
    obj = l.split(" ")
    r = int(obj[0])
    g = int(obj[1])
    b = int(obj[2])
    tow = (r, g, b)
    img.putpixel((cnt%400, cnt//400), tow)
    cnt+=1

img.save("flag.png")

# 拆分 GIF 并保存

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
from PIL import Image

file = 'inner.gif'

im = Image.open(file)

try: 
    im.save('break00.png'.format(im.tell()))
    while True:
        curr = im.seek(im.tell()+1)
        im.save('break{:02}.png'.format(im.tell()))
except EOFError:
    pass