gpt4 book ai didi

delphi - 如何使用扫描线绘制而不先加载图像?

转载 作者:行者123 更新时间:2023-12-03 19:50:27 25 4
gpt4 key购买 nike

我正在尝试执行以下操作:

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看到的每个演示中,它们都是从加载图像开始的。 (显然,这正确设置了各种句柄,以至于这种情况最终不会发生?)但是,我并不是在尝试加载图像并对其进行处理;我正在尝试从相机捕获图像数据。

如何设置位图,以便可以绘制扫描线而不必先加载图像?

最佳答案

开始绘制之前,应明确设置PixelFormat。例如,

procedure TForm1.FormPaint(Sender: TObject);
var
bm: TBitmap;
y: Integer;
sl: PRGBQuad;
x: Integer;
begin

bm := TBitmap.Create;
try
bm.SetSize(1024, 1024);
bm.PixelFormat := pf32bit;
for y := 0 to bm.Height - 1 do
begin
sl := bm.ScanLine[y];
for x := 0 to bm.Width - 1 do
begin
sl.rgbBlue := 255 * x div bm.Width;
sl.rgbRed := 255 * y div bm.Height;
sl.rgbGreen := 255 * x div bm.Width;
inc(sl);
end;
end;

Canvas.Draw(0, 0, bm);
finally
bm.Free;
end;

end;

关于delphi - 如何使用扫描线绘制而不先加载图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33575370/

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