攻防世界 Misc Miscellaneous-200

攻防世界 Misc Miscellaneous-200

  • 1.打开文件
  • 2.python
  • 3.exp
  • 4.运行结果

1.打开文件

攻防世界 Misc Miscellaneous-200_第1张图片

  • (255,255,255)
  • 应该是RGB像素点

2.python

  • Python图像库PIL(Python Image Library)是python的第三方图像处理库

3.exp

from ast import literal_eval as make_tuple
from PIL import Image
f = open('flag.txt', 'r')
corl = [make_tuple(line) for line in f.readlines()]
f.close()
img0 = Image.new('RGB', (270, 270), '#ffffff')
k=0
for i in range(246):
   for j in range(246):
      img0.putpixel ([i , j], corl[k])
      k=k+1
img0.save("result.png")

4.运行结果

攻防世界 Misc Miscellaneous-200_第2张图片

你可能感兴趣的:(Misc,c语言,开发语言,ctf)