10.4
Posted soberkkk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10.4相关的知识,希望对你有一定的参考价值。
Python提供了一个struct
模块来解决bytes
和其他二进制数据类型的转换。
struct
的pack
函数把任意数据类型变成bytes
:
>
表示字节顺序是big-endian,也就是网络序,I
表示4字节无符号整数。
I
:4字节无符号整数和H
:2字节无符号整数
def bmp_info(data): bmp=struct.unpack(‘<ccIIIIIIHH‘,data[:30]) #获取前30个字节 if bmp[0]==b‘B‘ and bmp[1]==b‘M‘: dict={} dict[‘width‘]=bmp[6] dict[‘height‘]=bmp[7] dict[‘color‘]=bmp[9] return dict bi = bmp_info(bmp_data) assert bi[‘width‘] == 28 assert bi[‘height‘] == 10 assert bi[‘color‘] == 16 print(‘ok‘) ok
以上是关于10.4的主要内容,如果未能解决你的问题,请参考以下文章