Click here to Skip to main content
15,885,934 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
And game development. We have a problem in the capture part.
Windows 7 operating system. the process nprotect's gamemon.des the screen capture function does not work. What part did I go wrong?

C#
namespace System.Drawing
{
    using System;
    using System.Runtime.InteropServices;

    public static class ScreenCapture
    {
        public static Bitmap DesktopCapture()
        {
            Bitmap bitmap;
            IntPtr desktopWindow = GetDesktopWindow();
            IntPtr dC = GetDC(desktopWindow);
            try
            {
                bitmap = Image.FromHbitmap(GetCurrentObject(dC, 7));
            }
            finally
            {
                ReleaseDC(desktopWindow, dC);
            }
            return bitmap;
        }

        [DllImport("gdi32.dll")]
        private static extern IntPtr GetCurrentObject(IntPtr hdc, ushort objectType);
        [DllImport("user32.dll")]
        private static extern IntPtr GetDC(IntPtr hwnd);
        [DllImport("User32")]
        private static extern IntPtr GetDesktopWindow();
        [DllImport("user32.dll")]
        private static extern void ReleaseDC(IntPtr hwnd, IntPtr hdc);
    }
}
Posted
Updated 19-Jan-13 9:33am
v2

Actually .net has it's own method to do it: Graphics.CopyFromScreen[^]. I suggest you consult this simple article for sample implementation: TeboScreen: Basic C# Screen Capture Application[^]
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 19-Jan-13 18:47pm    
Absolutely right, my 5.

Sorry, my mistake was to put a bit redundant answer, as I did it before I paid attention that you already advised to use CopyFromScreen. However, in return, I added some motivation information, please see. I will add a credit to your answer now.

—SA
Zoltán Zörgő 20-Jan-13 2:22am    
Thank you.
Zoltán Zörgő answer.Does not progress, but having said
Is there any other way?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900