Klar geht das,
was da oben ja nicht steht ist das du
Bitmap.pixelformat := pf24Bit;
machen must das der Algo tut.
und wenn du dann anstatt TRGBTripleArray einfach etwas der Art :
Delphi-Quellcode:
Type
PBGRA = ^TBGRA;
TBGRA = Record
Alpha : Byte;
Blue : Byte;
Green : Byte;
Red : Byte;
end;
Dann kannst du auch auf
Bitmap.pixelformat := pf32Bit;
Zugreifen.