自己寫了個截圖工具

来源:https://www.cnblogs.com/zhouyou96/archive/2020/01/08/12164774.html
-Advertisement-
Play Games

很簡單,就是先全屏截圖,然後再按需要裁剪就可以了。 所以,首先要獲取桌面的大小,代碼如下: 使用 PrimaryScreen.DESKTOP 就可以獲取桌面解析度的大小了,有了這個大小,就可以開始全屏截圖了,代碼如下: 調用 ImageHelper.GetScreen() 即可以獲取全屏截圖 再然後 ...


很簡單,就是先全屏截圖,然後再按需要裁剪就可以了。

所以,首先要獲取桌面的大小,代碼如下:

    public class PrimaryScreen
    {
        #region Win32 API
        [DllImport("user32.dll")]
        static extern IntPtr GetDC(IntPtr ptr);
        [DllImport("gdi32.dll")]
        static extern int GetDeviceCaps(
        IntPtr hdc, // handle to DC
        int nIndex // index of capability
        );
        [DllImport("user32.dll", EntryPoint = "ReleaseDC")]
        static extern IntPtr ReleaseDC(IntPtr hWnd, IntPtr hDc);
        #endregion
        #region DeviceCaps常量
        const int HORZRES = 8;
        const int VERTRES = 10;
        const int LOGPIXELSX = 88;
        const int LOGPIXELSY = 90;
        const int DESKTOPVERTRES = 117;
        const int DESKTOPHORZRES = 118;
        #endregion
        #region 屬性
        /// <summary>
        /// 獲取屏幕解析度當前物理大小
        /// </summary>
        public static Size WorkingArea
        {
            get
            {
                IntPtr hdc = GetDC(IntPtr.Zero);
                Size size = new Size();
                size.Width = GetDeviceCaps(hdc, HORZRES);
                size.Height = GetDeviceCaps(hdc, VERTRES);
                ReleaseDC(IntPtr.Zero, hdc);
                return size;
            }
        }
        /// <summary>
        /// 當前系統DPI_X 大小 一般為96
        /// </summary>
        public static int DpiX
        {
            get
            {
                IntPtr hdc = GetDC(IntPtr.Zero);
                int DpiX = GetDeviceCaps(hdc, LOGPIXELSX);
                ReleaseDC(IntPtr.Zero, hdc);
                return DpiX;
            }
        }
        /// <summary>
        /// 當前系統DPI_Y 大小 一般為96
        /// </summary>
        public static int DpiY
        {
            get
            {
                IntPtr hdc = GetDC(IntPtr.Zero);
                int DpiX = GetDeviceCaps(hdc, LOGPIXELSY);
                ReleaseDC(IntPtr.Zero, hdc);
                return DpiX;
            }
        }
        /// <summary>
        /// 獲取真實設置的桌面解析度大小
        /// </summary>
        public static Size DESKTOP
        {
            get
            {
                IntPtr hdc = GetDC(IntPtr.Zero);
                Size size = new Size();
                size.Width = GetDeviceCaps(hdc, DESKTOPHORZRES);
                size.Height = GetDeviceCaps(hdc, DESKTOPVERTRES);
                ReleaseDC(IntPtr.Zero, hdc);
                return size;
            }
        }

        /// <summary>
        /// 獲取寬度縮放百分比
        /// </summary>
        public static float ScaleX
        {
            get
            {
                IntPtr hdc = GetDC(IntPtr.Zero);
                int t = GetDeviceCaps(hdc, DESKTOPHORZRES);
                int d = GetDeviceCaps(hdc, HORZRES);
                float ScaleX = (float)GetDeviceCaps(hdc, DESKTOPHORZRES) / (float)GetDeviceCaps(hdc, HORZRES);
                ReleaseDC(IntPtr.Zero, hdc);
                return ScaleX;
            }
        }
        /// <summary>
        /// 獲取高度縮放百分比
        /// </summary>
        public static float ScaleY
        {
            get
            {
                IntPtr hdc = GetDC(IntPtr.Zero);
                float ScaleY = (float)(float)GetDeviceCaps(hdc, DESKTOPVERTRES) / (float)GetDeviceCaps(hdc, VERTRES);
                ReleaseDC(IntPtr.Zero, hdc);
                return ScaleY;
            }
        }
        #endregion
    }

使用 PrimaryScreen.DESKTOP 就可以獲取桌面解析度的大小了,有了這個大小,就可以開始全屏截圖了,代碼如下:

public class ImageHelper
    {
        /// <summary>
        /// 截取全屏
        /// </summary>
        /// <returns></returns>
        public static Bitmap GetScreen()
        {
            Size ScreenSize = PrimaryScreen.DESKTOP;
            Bitmap bmp = new Bitmap(ScreenSize.Width, ScreenSize.Height);
            using (Graphics g = Graphics.FromImage(bmp))
                g.CopyFromScreen(0, 0, 0, 0, new Size(ScreenSize.Width, ScreenSize.Height));
            return bmp;
        }

        /// <summary>
        /// 圖像明暗調整
        /// </summary>
        /// <param name="b">原始圖</param>
        /// <param name="degree">亮度[-255, 255]</param>
        public static void Lighten(Bitmap b, int degree)
        {
            if (b == null)
            {
                //return null;
                return;
            }

            if (degree < -255) degree = -255;
            if (degree > 255) degree = 255;

            try
            {

                int width = b.Width;
                int height = b.Height;

                int pix = 0;

                BitmapData data = b.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb);

                unsafe
                {
                    byte* p = (byte*)data.Scan0;
                    int offset = data.Stride - width * 3;
                    for (int y = 0; y < height; y++)
                    {
                        for (int x = 0; x < width; x++)
                        {
                            // 處理指定位置像素的亮度
                            for (int i = 0; i < 3; i++)
                            {
                                pix = p[i] + degree;

                                if (degree < 0) p[i] = (byte)Math.Max(0, pix);
                                if (degree > 0) p[i] = (byte)Math.Min(255, pix);

                            } // i
                            p += 3;
                        } // x
                        p += offset;
                    } // y
                }

                b.UnlockBits(data);

                //return b;
            }
            catch
            {
                //return null;
            }

        } // end of Lighten
    }

調用 ImageHelper.GetScreen() 即可以獲取全屏截圖

再然後,為了實現區域截圖,我們需要把全屏截圖放到一個窗體裡面進行裁剪,彈出裁剪窗體的代碼如下:

private void button1_Click(object sender, EventArgs e)
{
    this.Opacity = 0; //先隱藏自己
    Bitmap bitmap = ImageHelper.GetScreen(); //截取全屏
    GetScreenForm frm = new GetScreenForm(bitmap); //準備區域截圖
    frm.ShowDialog(); //彈出區域截圖界面
    this.Opacity = 1; //顯示自己
}

 

區域截圖的代碼有點多,無非就是滑鼠按下、移動、鬆開的相關處理,以對全屏截圖進行裁剪處理,代碼如下:

    public partial class GetScreenForm : Form
    {
        /// <summary>
        /// 亮圖(原圖)
        /// </summary>
        public Bitmap bitmap { get; set; }

        /// <summary>
        /// 暗圖
        /// </summary>
        public Bitmap bitmap2 { get; set; }

        /// <summary>
        /// 屏幕的寬
        /// </summary>
        public int W { get; set; }
        /// <summary>
        /// 屏幕的高
        /// </summary>
        public int H { get; set; }
        /// <summary>
        /// 適用於高DPI的寬度
        /// </summary>
        public int W2 { get; set; }
        /// <summary>
        /// 適用於高DPI的高度
        /// </summary>
        public int H2 { get; set; }

        Graphics g;
        Bitmap cache;
        Graphics gMain;

        /// <summary>
        /// 構造方法
        /// </summary>
        public GetScreenForm(Bitmap bitmap)
        {
            //亮圖 (也就是原圖)
            this.bitmap = bitmap;
            this.W = bitmap.Width;
            this.H = bitmap.Height;

            //暗圖
            this.bitmap2 = new Bitmap(bitmap.Width, bitmap.Height);
            using (Graphics g = Graphics.FromImage(bitmap2))
                g.DrawImage(bitmap, 0, 0);
            ImageHelper.Lighten(bitmap2, -100);
            //求出適用於高DPI的寬和高
            W2 = (int)(bitmap2.Width * PrimaryScreen.ScaleX);
            H2 = (int)(bitmap2.Height * PrimaryScreen.ScaleY);
            //初始化
            InitializeComponent();
            this.Width = (int)(this.W / PrimaryScreen.ScaleX);
            this.Height = (int)(this.H / PrimaryScreen.ScaleY);
            //繪圖相關
            cache = new Bitmap(this.W, this.H);
            gMain = this.CreateGraphics();
            g = Graphics.FromImage(cache);
        }

        /// <summary>
        /// 雙擊關閉
        /// </summary>
        protected override void OnDoubleClick(EventArgs e)
        {
            //獲取截圖 
            if (SX > int.MinValue && SY > int.MinValue)
            {
                //獲取區域
                int x1 = SX, x2 = SX + SW;
                if (x1 > x2) { x2 = x1 + x2; x1 = x2 - x1; x2 = x2 - x1; };
                int y1 = SY, y2 = SY + SH;
                if (y1 > y2) { y2 = y1 + y2; y1 = y2 - y1; y2 = y2 - y1; };
                //截圖
                Bitmap bmp = new Bitmap(x2 - x1, y2 - y1);
                Graphics g6 = Graphics.FromImage(bmp);
                g6.DrawImage(bitmap,
                    new Rectangle(0, 0, bmp.Width, bmp.Height),
                    new Rectangle((int)(x1 * PrimaryScreen.ScaleX), (int)(y1 * PrimaryScreen.ScaleY), (int)((x2 - x1) * PrimaryScreen.ScaleX), (int)((y2 - y1) * PrimaryScreen.ScaleY)),
                    GraphicsUnit.Pixel);
                bmp.Save("x.jpg", ImageFormat.Jpeg);
            }
            this.Close();
        }

        private void GetScreenForm_Load(object sender, EventArgs e)
        {

        }

        protected override void OnShown(EventArgs e)
        {
            DrawForm();
        }

        void DrawForm()
        {
            //畫暗圖
            g.DrawImage(bitmap2,
                new Rectangle(0, 0, W, H),   //目標
                new Rectangle(0, 0, W2, H2), //
                GraphicsUnit.Pixel);

            //畫亮圖
            if (SX > int.MinValue && SY > int.MinValue)
            {
                g.DrawImage(bitmap,
                    new Rectangle(SX, SY, SW, SH),
                    new Rectangle((int)(SX * PrimaryScreen.ScaleX), (int)(SY * PrimaryScreen.ScaleY), (int)(SW * PrimaryScreen.ScaleX), (int)(SH * PrimaryScreen.ScaleY)),
                    GraphicsUnit.Pixel);
                //new Rectangle(SX, SY, SW, SH),   //目標
                //new Rectangle(SX, SY, SW, SH),   ////GraphicsUnit.Pixel);
            }

            //翻轉
            gMain.DrawImage(cache, 0, 0);
        }

        /// <summary>
        /// 選擇的區域
        /// </summary>
        public int SX { get; set; } = int.MinValue;
        public int SY { get; set; } = int.MinValue;
        public int SW { get; set; }
        public int SH { get; set; }

        /// <summary>
        /// 工作類型 0未工作 1畫框 2移框
        /// </summary>
        public int WorkType { get; set; }

        /// <summary>
        /// 移動的起點
        /// </summary>
        public int MoveX { get; set; }
        public int MoveY { get; set; }

        protected override void OnMouseDown(MouseEventArgs e)
        {
            //判斷是不是點擊在框里
            bool inside = false;
            if (SX > int.MinValue && SY > int.MinValue)
            {
                int x1 = SX, x2 = SX + SW;
                if (x1 > x2) { x2 = x1 + x2; x1 = x2 - x1; x2 = x2 - x1; };
                int y1 = SY, y2 = SY + SH;
                if (y1 > y2) { y2 = y1 + y2; y1 = y2 - y1; y2 = y2 - y1; };
                if (e.X > x1 && e.X < x2
                    && e.Y > y1 && e.Y < y2)
                {
                    inside = true;
                }
            }
            if (inside)
            {
                //在框里,則進行移框
                this.MoveX = e.X;
                this.MoveY = e.Y;
                this.WorkType = 2;
                DrawForm();
            }
            else
            {
                //在框外,則重新畫框
                this.SX = e.X;
                this.SY = e.Y;
                this.SW = 0;
                this.SH = 0;
                this.WorkType = 1;
                DrawForm();
            }
        }

        protected override void OnMouseMove(MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Left)
            {
                if (this.WorkType == 1)
                {
                    //畫框
                    this.SW = e.X - this.SX;
                    this.SH = e.Y - this.SY;
                }
                else
                {
                    //移框
                    this.SX += e.X - this.MoveX;
                    this.SY += e.Y - this.MoveY;
                    this.MoveX = e.X;
                    this.MoveY = e.Y;
                }
                DrawForm();
            }
        }

        protected override void OnMouseUp(MouseEventArgs e)
        {
            if (this.WorkType == 1)
            {
                this.SW = e.X - this.SX;
                this.SH = e.Y - this.SY;
            }
            this.WorkType = 0;
            DrawForm();
        }
    }

 

提供源代碼給大家玩玩,點這裡下載源代碼

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 第一個隨筆,使用了OPEN Live Write,作為客戶端.最近使用c#開發一個小軟體,主要功能是OPC客戶端.以後會開發各類別的協議,作為,協議的轉發棧.因為我本人是搞自動化的,所以搞自動化小伙伴像我這樣喜歡編程的可能有,但是一般是邏輯思維強,但是底子相對還是弱的.1,C# 開發OPC的準備工作... ...
  • 微信公眾號: "Dotnet9" ,網站: "Dotnet9" ,問題或建議: "請網站留言" , 如果對您有所幫助: "歡迎贊賞" 。 C WPF 時鐘動畫(1/2) 內容目錄 1. 實現效果 2. 業務場景 3. 編碼實現 4. 本文參考 5. 源碼下載 1.實現效果 目前只實現了秒針動畫,下篇 ...
  • 簡單介紹 HttpReports 是 .Net Core 下的一個Web項目, 適用於WebAPI,Ocelot網關應用,MVC項目,非常適合針對微服務應用使用,通過中間件的形式集成到您的項目中,可以讓開發人員快速的搭建出一個 數據統計,分析,圖表,監控 一體化的 Web站點。 主要模塊 主要包含H ...
  • Windows 安裝.net2.0/3.0 將下列代碼拷到本地bat文件中(bat文件和sxs文件夾同級),下載適用的.net安裝包版本後放置到sxs文件夾,用管理員許可權執行bat文件即可。 .net2.0/3.0安裝包下載(下載後解壓到sxs文件夾中) widows 1909前版本 適用.net2 ...
  • 我在較早之前的隨筆《基於MVC4+EasyUI的Web開發框架形成之旅--附件上傳組件uploadify的使用》Web框架介紹中介紹了基於Uploadify的文件上傳操作,免費版本用的是Jquery+Flash實現文件的上傳處理,HTML5收費版本的沒有試過。隨著Flash逐漸退出整個環境,很多瀏覽... ...
  • 一、簡要介紹 在以前的文章裡面,我們介紹了 ABP vNext 在 DDD 模塊定義了倉儲的介面定義和基本實現。本章將會介紹,ABP vNext 是如何將 EntityFramework Core 框架跟倉儲進行深度集成。 ABP vNext 在集成 EF Core 的時候,不只是簡單地實現了倉儲模 ...
  • 請求篩選模塊被配置為拒絕包含雙重轉義序列的請求的.net core處理 ...
  • 概覽 最近有個需求是通過c 代碼來啟動 python 腳本。嘿~嘿!!! 突發奇想~~既然可以啟動 python 腳本,那也能啟動 flask,於是開始著手操作。 先看gif圖 準備 因為使用的是 來創建的控制台程式,啟動flask web程式,所以需要下載 , 如果使用的是 直接運行即可,當前是生 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...