gpt4 book ai didi

python - 如何在python中读取bmp文件头?

转载 作者:太空宇宙 更新时间:2023-11-04 00:27:20 27 4
gpt4 key购买 nike

我需要用 python 读取 bmp 文件的标题。我这样试过,但它显然只返回一堆不可理解的字节:

f = open(input_filename,"rb")
data = bytearray(f.read())
f.close()
print(data[:14])

我的想法是找到一个模块或一些快速的东西,以便在打开它时记录图像信息。我知道 matlab 中的这个函数完全符合我的要求:imfinfo()。但是我找不到 python 中的对应项。

需要说明的是,这是我用 matlab 得到的结果:

       FileModDate: '20-Oct-2017 09:42:24'
FileSize: 1311798
Format: 'bmp'
FormatVersion: 'Version 3 (Microsoft Windows 3.x)'
Width: 1280
Height: 1024
BitDepth: 8
ColorType: 'indexed'
FormatSignature: 'BM'
NumColormapEntries: 256
Colormap: [256x3 double]
RedMask: []
GreenMask: []
BlueMask: []
ImageDataOffset: 1078
BitmapHeaderSize: 40
NumPlanes: 1
CompressionType: 'none'
BitmapSize: 1310720
HorzResolution: 0
VertResolution: 0
NumColorsUsed: 256
NumImportantColors: 0

最佳答案

您可以使用 imghdr module (在 python stdlib 中):

>>> import imghdr
>>> print(imghdr.what(input_filename))
bmp

这将从标题中提取图像类型,仅此而已。 Python 标准库中没有其他任何东西可以获得更详细的信息——你需要一个第三方库来完成这样的专门任务。要了解其复杂性,请查看 BMP file format。 .根据此处概述的规范,编写一些纯 Python 代码来提取几项信息可能是可行的,但对于任意位图图像文件来说,要做到这一点并不容易。

更新:

下面是一个使用 struct module 从位图 header 中提取一些基本信息的简单脚本。 .请参阅上面提到的 BMP 文件格式以了解如何解释各种值,并注意此脚本仅适用于该格式的最常见版本(即 Windows BITMAPINFOHEADER):

import struct

bmp = open(fn, 'rb')
print('Type:', bmp.read(2).decode())
print('Size: %s' % struct.unpack('I', bmp.read(4)))
print('Reserved 1: %s' % struct.unpack('H', bmp.read(2)))
print('Reserved 2: %s' % struct.unpack('H', bmp.read(2)))
print('Offset: %s' % struct.unpack('I', bmp.read(4)))

print('DIB Header Size: %s' % struct.unpack('I', bmp.read(4)))
print('Width: %s' % struct.unpack('I', bmp.read(4)))
print('Height: %s' % struct.unpack('I', bmp.read(4)))
print('Colour Planes: %s' % struct.unpack('H', bmp.read(2)))
print('Bits per Pixel: %s' % struct.unpack('H', bmp.read(2)))
print('Compression Method: %s' % struct.unpack('I', bmp.read(4)))
print('Raw Image Size: %s' % struct.unpack('I', bmp.read(4)))
print('Horizontal Resolution: %s' % struct.unpack('I', bmp.read(4)))
print('Vertical Resolution: %s' % struct.unpack('I', bmp.read(4)))
print('Number of Colours: %s' % struct.unpack('I', bmp.read(4)))
print('Important Colours: %s' % struct.unpack('I', bmp.read(4)))

输出:

Type: BM
Size: 287518
Reserved 1: 0
Reserved 2: 0
Offset: 1078
DIB Header Size: 40
Width: 657
Height: 434
Colour Planes: 1
Bits per Pixel: 8
Compression Method: 0
Raw Image Size: 286440
Horizontal Resolution: 11811
Vertical Resolution: 11811
Number of Colours: 256
Important Colours: 0

关于python - 如何在python中读取bmp文件头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47003833/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com