ups, beim quellcode unten hab ich noch einen fehler (abitmap heißt bitmap!)
Delphi-Quellcode:
{ Bildformat auf 1 Bit setzen, damit Speicher eingespart wird }
[b]Bitmap[/b].PixelFormat := pf1Bit;
for y := 0 to Bitmap.height - 1 do
begin
PixelLine := Bitmap.ScanLine[y];
for x := 0 to Bitmap.width - 1 do
begin
if PixelLine^[x] = 255
then begin
pixelline^[x] := 1
end
else
pixelline^[x] := 0;
end;
end;