- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是这个领域的新手,我对某些术语感到困惑!
bisizeimage , bisize 和 bfsize !
请给我一个简单的定义,如果有方程式来计算它们呢?
bisizeimage bisize bfsize bitmapinfoheader bitmapfileheader
编辑:(“由 friend 回答”)
biSize > The number of bytes required by the structure.(what is the structure exactly ?)
The structure is the struct BITMAPINFOHEADER. That is a fixed value.
biSizeImage>图像的大小(以字节为单位)。
bfSize>位图文件的大小(以字节为单位)。
(图像和位图文件有什么区别?)
biSizeImage is the whole image size, bfSize is the same, but you have to add the size of the 2 header files.
最佳答案
@Roman Abashin的回答有一个轻微但重要的错误。 biSize不是两个 header 的组合大小。
biSize是BITMAPINFOHEADER仅的大小。它是40个字节。
biSize = 40
bfOffBits = 54
bfSize = biSizeImage + sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER)
bfSize = biSizeImage + sizeof(BITMAPFILEHEADER) + biSize
bfSize = biSizeImage + 14 + 40
bfSize = biSizeImage + 54
bfSize = biSizeImage + bfOffbits
关于bitmap - bisizeimage,bisize和bfsize有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25713117/
我是这个领域的新手,我对某些术语感到困惑! bisizeimage , bisize 和 bfsize ! 请给我一个简单的定义,如果有方程式来计算它们呢? bisizeimage bisize bf
我正在尝试使用此方法加载 BMP 图像: int TextureManager::LoadBMP(std::string path, unsigned int &texture) { unsi
我编写了一个程序来读取.bmp 文件。这是 .bmp 文件的信息: 这是另一张测试图片: 我发现“biSizeImage”不等于“width * height * (biBitCount/8)”,为什
我是一名优秀的程序员,十分优秀!