gpt4 book ai didi

delphi - 了解 Delphi 和 C++ Builder 中的 TBitmap.Scanline

转载 作者:行者123 更新时间:2023-12-03 14:59:41 32 4
gpt4 key购买 nike

Delphi 和 C++ Builder 有一个带有 Scanline 属性的 TBitmap 类,该属性返回位图像素的内存。当我在 BMP 文件的十六进制编辑器中查看时,这似乎有所不同。

我正在尝试将 C++ Builder 应用程序移植到 Java,并且想了解 Scanline 中的算法。如果我有该文件,如何像 Scanline 那样生成内存阵列? Scanline 背后的确切规范是什么?

澄清:BMP 是 Windows 24 位 DIB。我没有在代码中提供任何其他信息; C++ Builder 似乎将其加载到某种类型的内存结构中,但它不是逐字节加载的。想知道该结构的规范是什么。

最佳答案

位图文件以 BITMAPFILEHEADER 开头,bfOffBits成员指定图像数据的起始地址。这是位于 Dh 的 DWORD(第 11-14 个字节)。 Delphi VCL 的结构定义为“windows.pas”中的 TBitmapFileHeader

ScanLine 的最后一行指向此图像数据(自下而上)。 VCL 在 dsBm(a BITMAP ) 成员或 DIBSECTIONbmBits 成员中具有此值。的图像。当请求扫描线时,VCL 根据请求的行、行中的像素数(图像的宽度)以及组成像素的位数计算偏移量,并返回一个指向地址的指针,将此偏移量添加到bmBits。它实际上是逐字节的图像数据。

下面的 Delphi 示例代码将 24 位位图读取到文件流,并将每个读取的像素与 Bitmap.ScanLine 对应项的像素数据进行比较:

procedure TForm1.Button1Click(Sender: TObject);
var
BmpFile: string;
Bmp: TBitmap;

fs: TFileStream;
FileHeader: TBitmapFileHeader;
InfoHeader: TBitmapInfoHeader;
iHeight, iWidth, Padding: Longint;

ScanLine: Pointer;
RGBFile, RGBBitmap: TRGBTriple;
begin
BmpFile := ExtractFilePath(Application.ExeName) + 'Attention_128_24.bmp';

// laod bitmap to TBitmap
Bmp := TBitmap.Create;
Bmp.LoadFromFile(BmpFile);
Assert(Bmp.PixelFormat = pf24bit);

// read bitmap file with stream
fs := TFileStream.Create(BmpFile, fmOpenRead or fmShareDenyWrite);
// need to get the start of pixel array
fs.Read(FileHeader, SizeOf(FileHeader));
// need to get width and height of bitmap
fs.Read(InfoHeader, SizeOf(InfoHeader));
// just a general demo - no top-down image allowed
Assert(InfoHeader.biHeight > 0);
// size of each row is a multiple of the size of a DWORD
Padding := SizeOf(DWORD) -
(InfoHeader.biWidth * 3) mod SizeOf(DWORD); // pf24bit -> 3 bytes

// start of pixel array
fs.Seek(FileHeader.bfOffBits, soFromBeginning);


// compare reading from file stream with the value from scanline
for iHeight := InfoHeader.biHeight - 1 downto 0 do begin

// get the scanline, bottom first
ScanLine := Bmp.ScanLine[iHeight];

for iWidth := 0 to InfoHeader.biWidth - 1 do begin

// read RGB from file stream
fs.Read(RGBFile, SizeOf(RGBFile));

// read RGB from scan line
RGBBitmap := TRGBTriple(Pointer(
Longint(ScanLine) + (iWidth * SizeOf(TRGBTriple)))^);

// assert the two values are the same
Assert((RGBBitmap.rgbtBlue = RGBFile.rgbtBlue) and
(RGBBitmap.rgbtGreen = RGBFile.rgbtGreen) and
(RGBBitmap.rgbtRed = RGBFile.rgbtRed));
end;
// skip row padding
fs.Seek(Padding, soCurrent);
end;
end;



关于在十六进制编辑器中查找位图文件的像素数据的开头的图片:

enter image description here

关于delphi - 了解 Delphi 和 C++ Builder 中的 TBitmap.Scanline,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7466349/

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