Discuss / Python / struct

struct

Topic source
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