标签:hal evel -- none python2 one src ring tostring
7、Hint:给了一副图片‘oxygen.png‘,中间有一道马赛克
先试着把马赛克像素返回为内容
rgba模式(r=red,g=green,b=blue,a=alpha--->透明度)
这道题真的有问题……自己量的像素……
用PIL 这道题我用的python2.7
马赛克长:(1,608)宽(44,52)
每七个像素一组
import PIL.Image print PIL.Image.open(‘oxygen.png‘).tostring()[108188:110620:28]
结果是:smart guy, you made it. the next level is [105, 110, 116, 101, 103, 114, 105, 116, 121]
import PIL.Image print PIL.Image.open(‘oxygen.png‘).tostring()[108188:110620:28] l = [105, 110, 116, 101, 103, 114, 105, 116, 121] print ‘‘.join(map(chr, l))
替换URL为integrity
标签:hal evel -- none python2 one src ring tostring
原文地址:http://www.cnblogs.com/Zzzml/p/7618259.html