up vote 4 down vote favorite
share [g+] share [fb]

Is the Api Function "GetPixel" faster than Canvas.Pixels ?

link|improve this question

57% accept rate
feedback

3 Answers

It should be the same:

function TCanvas.GetPixel(X, Y: Integer): TColor;
begin
  RequiredState([csHandleValid]);
  GetPixel := Windows.GetPixel(FHandle, X, Y);
end;
link|improve this answer
feedback

If you are looking for something that performs better than GetPixel/Canvas.Pixel[] you should check out Bitmap.ScanLine. Only trouble is the data may be arranged in a number of ways, determined by Bitmap.PixelFormat

link|improve this answer
feedback

The GetPixel function is very slow! If you need high (or even acceptable) performance, you should use the ScanLine property. ScanLine[y] is a pointer to the yth line of pixels in the bitmap, encoded in the format specified by the PixelFormat property. For instance, for a 24-bit bitmap, the line has the format

B1 G1 R1 B2 G2 R2 ... Bn Gn Rn

if the width of the bitmap is n. Bi, Gi, and Ri are the blue, green, and red intensities of pixel i, respectively, as bytes.

link|improve this answer
May I ask what is wrong with my argument? – Andreas Rejbrand Mar 12 '10 at 14:40
@Ritsaert: Are you sure? I just created a small BMP file filled with (R, G, B) = (0xFF, 0, 0) and looked at it in the memory. See privat.rejbrand.se/hex.png. The highlighted byte is the first byte of the first scanline. To me it sure looks like the bytes go BBGGRRBBGGRR... – Andreas Rejbrand Mar 12 '10 at 15:23
I am ashamed. You are correct. The format for the 24 bit bitmaps is in BGR order. – Ritsaert Hornstra Mar 12 '10 at 15:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.