Sto tentando di accedere alla scanline di una bitmap in base a article on Embarcadero. Utilizzo di scanlines comeCome implementare correttamente l'accesso scanline di TBitmap?
for y := 0 to n do
begin
line := bitmap.scanline [y];
for x := 0 to n do line [x] := value;
Ho implementato prima. Ho notato che l'accesso a una scanline richiede relativamente tempo e l'articolo menzionato sopra offre una soluzione a questo. Non sono in grado di implementarlo correttamente. Il mio codice è:
unit SCTester;
interface
uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
ExtCtrls;
type
TRGBQuad = packed record
b: uInt8;
g: uInt8;
r: uInt8;
alpha: uInt8;
end; // Record: TQuad //
// Override the definitions in Graphics.pas
TRGBQuadArray = packed array [0..MaxInt div SizeOf (TRGBQuad) - 1] of TRGBQuad;
PRGBQuadArray = ^TRGBQuadArray;
TForm1 = class(TForm)
Image: TImage;
procedure ImageDblClick(Sender: TObject);
end;
var Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.ImageDblClick(Sender: TObject);
var Bitmap: TBitmap;
q: TRGBQuad;
x, y: NativeInt;
FirstLine: PRGBQuadArray;
idx: NativeInt;
LineLength: NativeInt;
begin
q.r := 0; q.g := 0;
Bitmap := TBitmap.Create;
Bitmap.Height := Image.Height;
Bitmap.Width := Image.Width;
Bitmap.PixelFormat := pf32Bit;
FirstLine := Bitmap.ScanLine [0];
LineLength := (NativeInt (Bitmap.Scanline [1]) - NativeInt (FirstLine)) div SizeOf (TRGBQuad);
try
for y := Bitmap.Height - 1 downto 0 do
begin
for x := 0 to Bitmap.Width - 1 do
begin
q.b := (x xor y) mod 255;
idx := y * LineLength + x;
FirstLine [idx] := q;
end; // for
end; // for
Image.Picture.Assign (Bitmap);
finally
Bitmap.Free;
end; // try..finally
end;
end.
E ottengo sempre un accesso illegale quando y = 1 e x = 0. LineLength è negativo (la larghezza della bitmap), ma ciò potrebbe essere previsto. Che cosa sto facendo di sbagliato?
MODIFICA: Il codice sopra riportato è stato modificato per riflettere le osservazioni elaborate fino a quel momento.
'idx' dovrebbero essere dichiarati come' NativeInt', così il vostro codice potrebbe essere utilizzato in 64 pure. 'LineLength' non deve essere negativo (quindi l'accesso illegale). La mia conclusione è che si sta eseguendo questo codice in modalità 64 bit. –
@LURD, I miei pensieri esattamente - e ogni LongInt (...) dovrebbe essere sostituito con NativeUInt (...) – kobik
@LURD LineLength può essere negativo (e di solito è negativo), che non è un problema che causa AV. – kludg