Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7784189
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T20:03:18+00:00 2026-06-01T20:03:18+00:00

I was searching through the posts on this site and i came across this:

  • 0

I was searching through the posts on this site and i came across this:
How do I get the colour of a pixel at X,Y using c#?

would this method still be effective for trying to get the colour of a pixel just inside a form?

If not, what would be a way to essentially “map” the form in an 2D array of color values?

For example, I have a Tron game, and I want to check to see if the next location of the lightbike already contains another lightbike.

Thanks,
Ian

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T20:03:19+00:00Added an answer on June 1, 2026 at 8:03 pm
    using System;
    using System.Drawing;
    using System.Runtime.InteropServices;
    
    sealed class Win32
    {
        [DllImport("user32.dll")]
        static extern IntPtr GetDC(IntPtr hwnd);
    
        [DllImport("user32.dll")]
        static extern Int32 ReleaseDC(IntPtr hwnd, IntPtr hdc);
    
        [DllImport("gdi32.dll")]
        static extern uint GetPixel(IntPtr hdc, int nXPos, int nYPos);
    
        static public System.Drawing.Color GetPixelColor(int x, int y)
        {
           IntPtr hdc = GetDC(IntPtr.Zero);
           uint pixel = GetPixel(hdc, x, y);
           ReleaseDC(IntPtr.Zero, hdc);
           Color color = Color.FromArgb((int)(pixel & 0x000000FF),
                        (int)(pixel & 0x0000FF00) >> 8,
                        (int)(pixel & 0x00FF0000) >> 16);
           return color;
        }
    }
    

    Using this, you can then do:

    public static class ControlExts
    {
        public static Color GetPixelColor(this Control c, int x, int y)
        {
            var screenCoords = c.PointToScreen(new Point(x, y));
            return Win32.GetPixelColor(screenCoords.X, screenCoords.Y);
        }
    }
    

    So, in your case you can do:

    var desiredColor = myForm.GetPixelColor(10,10);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

After much google searching and looking through other posts here i still can't work
After searching online and going through past stackoverflow posts for a suitable implementation for
I've been searching through SO and come across a couple solutions that all feel
I've tried searching through search engines,MSDN,etc. but can't anything. Sorry if this has been
I have been struggling with this and searching through similar answers on SO, but
I have been searching for hours through all the posts regarding LinkedHashMap but I
I spent 2 hours searching through the other few posts at Stack Overflow concerning
After searching through SO, and not finding anything useful, I decided to post this
After searching through some existing libraries for JSON, I have finally ended up with
I am currently searching through an HTML page for a specific link, at the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.