我正在尝试执行以下操作:
bmp := TBitmap.Create;
bmp.Width := FWidth;
bmp.Height := FHeight;
for y := 0 to FHeight - 1 do
begin
sl := bmp.ScanLine[y];
for x := 0 to FWidth - 1 do
begin
//draw to the scanline, one pixel at a time
end;
end;
//display the image
bmp.Free;
不幸的是,我最终得到的是一个完全白色的图像,除了底线,它被适当地着色。一点调试表明,每次我访问该ScanLine
属性时,它都会调用TBitmap.FreeImage
并进入if (FHandle <> 0) and (FHandle <> FDIBHandle) then
块,这会重置整个图像,因此实际上只需要对最后一行的更改。
到目前为止,在我使用的每个演示中TBitmap.ScanLine
,它们都是从加载图像开始的。(显然,这会正确设置各种句柄,这样就不会发生这种情况?)但我并没有尝试加载图像并对其进行处理;我正在尝试从相机捕获图像数据。
如何设置位图以便无需先加载图像就可以绘制到扫描线?