Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know several methods for reading Bitmap pixels or to get a Graphic object from an image, but what I am trying to understand is how to know what pixels have been drawn by the user by means of a Graphics object. Example: the user draw a line (but it could be any possible shape) using something like:

surface.DrawLine(aPen, X0, Y0, X1, Y1);      

I need to know what pixels have been set by the user to perform some processing. This could be done quite easily for simple shapes using math (i.e. X = X0 + (X1-X0)*t) , but it seems to me possibly unefficient (specially for complex shapes). A solution I would like is to read a Bitmap looking for the pixels that have been set, but I do not know methods for getting a Bitmap image (or whatever relevant data structure) to work on from a Graphics object. Because this is an obvious need for any program allowing to the user do draw, I am for sure missing some points. Someone has a hint about this?

P.S. I am using Graphics object over a 8Bpp indexed Bitmap in a Windows Form and I need all the pixel coordinates and, possibly, the pixel values (they could be deduced from pixel coordinates, I guess)

Proposed solution

The best solution I can figure out after the contributions in this post is something similar to this (being sourceImage the image I want to draw on and surface the picturebox control where sourceImage is rendered):

         private void DrawOverlay()
        {
            using (var tmpImg = new Bitmap (SourceImage.Width,SourceImage.Height, PixelFormat .Format32bppArgb))
            {
                var g = Graphics.FromImage(tmpImg);
                g.DrawLine(pen1, Startx, Starty, Endx, Endy);
                tmpImg.MakeTransparent(Color.FromArgb(0, 0, 0));
                surface.DrawImage(tmpImg, new Point (0, 0));      

// process here the tmpImg  pixels drawn by the user 

            }                 
        }

If someone has better answer, please, if you like, let us know; otherwise I'll close the post answering to my own question as above.

share|improve this question
Do you need all te pixels that have been set or would the locations/pixels where the user has pressed the button suffice? Are you using Winfoms, WPF, Windows 8, ASP.NET, Silverlight, Windows Phone? – Erno de Weerd Jan 18 at 10:43
How it's different from rendering with Graphics object to bitmap, with the same function ? I mean create Graphics to in memory bitmap and render to it... – Tigran Jan 18 at 10:45
@Tigran: Sorry, I did not understand. The drawing is an interactive process, the user may draw complex shapes and wishes to have immediate feedback on the shapes drawn before drawing completion. Am I missing something? – Daniel Jan 18 at 10:57
I mean, if you implement DoubleBuffering manualy, you will have access to the in-memory (buffered) screen, so can access to pixel information from that bitmap. Cause you, I presume, activated double buffering in your app, so accessing that BufferedGraphicsContext you will have acces to information you need, or not ? – Tigran Jan 18 at 11:12
@Tigran: I am not using double buffering at all. – Daniel Jan 18 at 11:29
show 3 more comments

2 Answers

I suggest making a copy of the image before creating the Graphics context. After you have processed all paintings with the Graphics context, you can compare the image with the first one (backup) using XOR (see this example). The resulting contains only those pixels that have changed.

backupImage XOR drawnImage = changes

You can also use OpenCV wrapped by AForge.NET and it's Difference and Substract classes. They do exactly what you want.

share|improve this answer
up vote 0 down vote accepted

As far as I know the proposed solution draft in the question after the feedback received seems to be the an acceptable solution to have an easy access to the pixels drawn.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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