array_row=[int(pix)forpixinrow] # 之所以要转,是因为img.putpixel()方法只接受tuple datas.append(tuple(array_row)) size=int(math.sqrt(len(datas)))# 最终的构建的画布大小 img=Image.new('RGB', (size,size),'#ffffff') k=0 foriinrange(size): forjinrange(size): img.putpixel((i,j),da...
/* Miscellaneous operations */ int (*ctrl); /* Application data */ void *app_data; /* New structure members */ /* Above comment to be removed when legacy has gone */ int name_id; char *type_name; const char *description; } ...
特征是从0-F,感觉是16进制文件,我们尝试扔到winhex中,看看这些是什么意思,如图: 可以看到有py和pyt文件,判断可能可以进行pyc反编译。什么是pyc?传送门:https://www.yuanrenxue.com/tricks/what-is-pyc-file.html 反编译 打开conda环境,依次输入: # 安装uncompyle包 pipinstalluncompyle #将res.pyc反编译成r...