How do I obtain the RGB values of each pixel from the top left corner to the bottom right corner of the current top image on the screen?

Source: Internet
Author: User
How do I obtain the RGB values of each pixel from the top left corner to the bottom right corner of the current top image on the screen? Delphi/Windows SDK/API
Http://www.delphi2007.net/DelphiMultimedia/html/delphi_20061005161844269.html
How do I obtain the RGB values of each pixel from the top left corner to the bottom right corner of the current top image on the screen?
It is the pixel on the screen, not the pixel on the form.

Procedure tform1.button1click (Sender: tobject );
VaR
DC: HDC;
B: tbitmap;
Begin
DC: = getdc (hwnd_desktop );
Try
B: = image1.picture. Bitmap;
B. Width: = screen. width;
B. Height: = screen. height;
Bitblt (B. Canvas. Handle, 0, 0, screen. Width, screen. height,
DC, 0, 0, srccopy );
Finally
Releasedc (hwnd_desktop, DC );
End;
End;

I don't need to talk about how to retrieve pixels from tbitmap.

positive solution:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.