2016-06-11 56 views

回答

1

根據Wikipedia - BMP file format

Offset (hex) Offset (dec) Size (bytes) Windows BITMAPINFOHEADER[1] 
0E    14    4    the size of this header (40 bytes) 
12    18    4    the bitmap width in pixels (signed integer) 
16    22    4    the bitmap height in pixels (signed integer) 

隨着您發佈的位圖頭,寬度和高度將

Width: D1 02 00 00 
Height: 1D 02 00 00 

上面的維基百科鏈接指出

所有整數值以little-endian格式存儲(即 最低有效字節fir ST)。

如果我的理解是正確的,要轉換爲

Width = 209 + (2 x 256) + (0 x 256^2) + (0 x 256^3) = 721 
Height = 29 + (2 x 256) + (0 x 256^2) + (0 x 256^3) = 541 
相關問題