Discuss / Python / 练习

练习

Topic source

Teresa委

#1 Created at ... [Delete] [Delete and Lock User]
def bmp_info(data):
    s=struct.unpack('<ccIIIIIIHH', data[:30])
    if s[0]==b'B' and s[1]==b'M':
        return {
            'width': s[6],
            'height': s[7],
            'color': s[9]
        }


  • 1

Reply