You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
364 B
13 lines
364 B
#!/bin/python
|
|
from PIL import Image, ImageColor
|
|
|
|
im = Image.new('1', (4000,4000), 'white')
|
|
|
|
with open('secret_map.txt', 'r') as f:
|
|
while (cl := f.readline()):
|
|
painting = cl.split(" ", 1)
|
|
im.putpixel((int(painting[1], 16),int(painting[0], 16)), ImageColor.getcolor('black', '1'))
|
|
|
|
im.save('maybe.png')
|
|
|
|
# 247CTF{0c895fb57954df7f83756e1f7718e661} |