versuch mal Folgendes (hat mir sehr geholfen bei Bitmaps im Speicher):
Delphi-Quellcode:
aBitmap := TBitmap.Create;
aBitmap.PixelFormat := pf24bit; // das ist der Trick, default ist pfDevice
aBitmap.Width := 1024; // oder so
aBitmap.Height := 2048; // oder so
PixelFormat=pfDevice kostet anscheinend sehr viel Speicher bei Bitmaps
Gruß
Roderich