还原图片真实宽高(python3)

import binascii import struct import sys file = input('图片地址:') fr = open(file,'rb').read() data: bytearray = bytearray(fr[0x0c:0x1d]) crc32key...