ScreenCapture 程序截取屏幕截图 [英] ScreenCapture program taking screenshot

查看:69
本文介绍了ScreenCapture 程序截取屏幕截图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在开发一个 Windows 应用程序,我想在其中截取整个窗口的屏幕截图.为此,我编写了以下代码:

I'm developing a windows application in which i want to take screenshot of the whole window. For that i have written the following code:

Imports System.IO


Public Class ScreenCapture

    Public Sub GetJPG()
        Dim dt As DateTime = DateTime.Now
        Dim cdt As String = ""
        cdt = dt.ToString("dd MM yyyy HH:mm:ss")
        cdt = cdt.Replace(":", "_")
        cdt = cdt.Replace(" ", "_")

        Dim ScreenSize = SystemInformation.PrimaryMonitorSize

        Dim width As Integer = ScreenSize.Width
        Dim height As Integer = ScreenSize.Height

        Dim dir As DirectoryInfo = New DirectoryInfo("Screenshots")
        If Not dir.Exists Then dir = Directory.CreateDirectory(dir.FullName)
        Dim path As String = AppDomain.CurrentDomain.BaseDirectory

        Dim bitmap = New System.Drawing.Bitmap(ScreenSize.Width, ScreenSize.Height)
        Dim g = Graphics.FromImage(bitmap)
        g.CopyFromScreen(New Point(0, 0), New Point(0, 0), ScreenSize)
        g.Flush()

        Dim newbitmap = New System.Drawing.Bitmap(bitmap, width, height)

        Dim gr As Graphics = Graphics.FromImage(bitmap)
        gr.DrawImage(newbitmap, New Rectangle(0, 0, width, height), New Rectangle(0, 0, bitmap.Width, bitmap.Height), GraphicsUnit.Pixel)

        newbitmap.Save(path & "Screenshots\" & cdt & ".jpg", System.Drawing.Imaging.ImageFormat.Png)

    End Sub
End Class

当我运行 wpf 应用程序并在后台保持此屏幕捕获应用程序运行时.它在 wpf 应用程序的背景中截取窗口的屏幕截图.我想要显示器上当前视图的屏幕截图.

When i run a wpf application and in background keep this screencapture app running. It takes screenshot of the window in the background of the wpf application. I want the screenshot of the current view which is there on the monitor.

请帮帮我.

推荐答案

这可能对您有所帮助..

This may help you..

using System;
using System.Runtime.InteropServices;
using System.Drawing;
using System.Drawing.Imaging;

namespace Cluster2
{
public class screen
{
    public void Main()
    {

        CaptureScreenToFile("C:\\temp1.gif", ImageFormat.Gif);
    }

    /// <summary>
    /// Creates an Image object containing a screen shot of the entire desktop
    /// </summary>
    /// <returns></returns>
    public Image CaptureScreen()
    {
        return CaptureWindow(User32.GetDesktopWindow());
    }

    /// <summary>
    /// Creates an Image object containing a screen shot of a specific window
    /// </summary>
    /// <param name="handle">The handle to the window. (In windows forms, this is obtained by the Handle property)</param>
    /// <returns></returns>
    public Image CaptureWindow(IntPtr handle)
    {
        // get the hDC of the target window
        IntPtr hdcSrc = User32.GetWindowDC(handle);
        // get the size
        User32.RECT windowRect = new User32.RECT();
        User32.GetWindowRect(handle, ref windowRect);
        int width = windowRect.right - windowRect.left;
        int height = windowRect.bottom - windowRect.top;
        // create a device context we can copy to
        IntPtr hdcDest = GDI32.CreateCompatibleDC(hdcSrc);
        // create a bitmap we can copy it to,
        // using GetDeviceCaps to get the width/height
        IntPtr hBitmap = GDI32.CreateCompatibleBitmap(hdcSrc, width, height);
        // select the bitmap object
        IntPtr hOld = GDI32.SelectObject(hdcDest, hBitmap);
        // bitblt over
        GDI32.BitBlt(hdcDest, 0, 0, width, height, hdcSrc, 0, 0, GDI32.SRCCOPY);
        // restore selection
        GDI32.SelectObject(hdcDest, hOld);
        // clean up 
        GDI32.DeleteDC(hdcDest);
        User32.ReleaseDC(handle, hdcSrc);

        // get a .NET image object for it
        Image img = Image.FromHbitmap(hBitmap);
        // free up the Bitmap object
        GDI32.DeleteObject(hBitmap);

        return img;
    }

    /// <summary>
    /// Captures a screen shot of a specific window, and saves it to a file
    /// </summary>
    /// <param name="handle"></param>
    /// <param name="filename"></param>
    /// <param name="format"></param>
    public void CaptureWindowToFile(IntPtr handle, string filename, ImageFormat format)
    {
        Image img = CaptureWindow(handle);
        img.Save(filename, format);
    }

    /// <summary>
    /// Captures a screen shot of the entire desktop, and saves it to a file
    /// </summary>
    /// <param name="filename"></param>
    /// <param name="format"></param>
    public void CaptureScreenToFile(string filename, ImageFormat format)
    {
        Image img = CaptureScreen();
        img.Save(filename, format);
    }

    /// <summary>
    /// Helper class containing Gdi32 API functions
    /// </summary>
    private class GDI32
    {

        public const int SRCCOPY = 0x00CC0020; // BitBlt dwRop parameter

        [DllImport("gdi32.dll")]
        public static extern bool BitBlt(IntPtr hObject, int nXDest, int nYDest,
            int nWidth, int nHeight, IntPtr hObjectSource,
            int nXSrc, int nYSrc, int dwRop);
        [DllImport("gdi32.dll")]
        public static extern IntPtr CreateCompatibleBitmap(IntPtr hDC, int nWidth,
            int nHeight);
        [DllImport("gdi32.dll")]
        public static extern IntPtr CreateCompatibleDC(IntPtr hDC);
        [DllImport("gdi32.dll")]
        public static extern bool DeleteDC(IntPtr hDC);
        [DllImport("gdi32.dll")]
        public static extern bool DeleteObject(IntPtr hObject);
        [DllImport("gdi32.dll")]
        public static extern IntPtr SelectObject(IntPtr hDC, IntPtr hObject);
    }

    /// <summary>
    /// Helper class containing User32 API functions
    /// </summary>
    private class User32
    {
        [StructLayout(LayoutKind.Sequential)]
        public struct RECT
        {
            public int left;
            public int top;
            public int right;
            public int bottom;
        }

        [DllImport("user32.dll")]
        public static extern IntPtr GetDesktopWindow();
        [DllImport("user32.dll")]
        public static extern IntPtr GetWindowDC(IntPtr hWnd);
        [DllImport("user32.dll")]
        public static extern IntPtr ReleaseDC(IntPtr hWnd, IntPtr hDC);
        [DllImport("user32.dll")]
        public static extern IntPtr GetWindowRect(IntPtr hWnd, ref RECT rect);

    }

}
}

它将截取您当前关注的整个窗口的屏幕截图..此外,如果您将其用作像 screen.cs 这样的单独文件,那么您应该在主 cs 文件中包含以下函数.

It will take the screenshot of the entire window that you focus presently..Also, if you are using it as a seperate file like screen.cs then you should include the below function in your main cs file.

public class sshot : screen
{
    public void shot()
    {
        CaptureScreenToFile("C:\\Logs\\Screenshot" + DateTime.Now.ToString("ddMMyyyy") + ".jpg", System.Drawing.Imaging.ImageFormat.Png);
    }
}

现在在需要截图的情况下调用该函数..

Now call the function at the situation where you need to get screenshot..

 sshot ob = new sshot();     
 ob.shot();

这篇关于ScreenCapture 程序截取屏幕截图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆