C#實現(xiàn)屏幕拷貝的方法
更新時間:2015年06月12日 10:05:23 作者:zhuzhao
這篇文章主要介紹了C#實現(xiàn)屏幕拷貝的方法,實例分析了兩種常用的屏幕拷貝實現(xiàn)技巧,需要的朋友可以參考下
本文實例講述了C#實現(xiàn)屏幕拷貝的方法。分享給大家供大家參考。具體如下:
方法一:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Drawing.Drawing2D; namespace WindowsApplication2 { public partial class Form21 : Form { public Form21() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Rectangle screenRect = Screen.PrimaryScreen.WorkingArea; Bitmap dumpBitmap = new Bitmap(screenRect.Width, screenRect.Height); Graphics tg = Graphics.FromImage(dumpBitmap); tg.CopyFromScreen(0, 0, 0, 0, new Size(dumpBitmap.Width, dumpBitmap.Height)); this.pictureBox1.BackgroundImage = dumpBitmap; this.pictureBox1.BackgroundImageLayout = ImageLayout.Stretch; dumpBitmap.Save(@"c:/image1.bmp"); } } }
方法二:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace WindowsApplication2 { public partial class Form22 : Form { public Form22() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Rectangle rect = new Rectangle(0, 0, this.Size.Width, this.Size.Height); Bitmap dumpBitmap = new Bitmap(this.Size.Width, this.Size.Height); this.DrawToBitmap(dumpBitmap, rect); this.pictureBox1.BackgroundImage = dumpBitmap; this.pictureBox1.BackgroundImageLayout = ImageLayout.Stretch; dumpBitmap.Save(@"c:/image2.bmp"); } } }
希望本文所述對大家的C#程序設計有所幫助。
相關文章
C#通過HttpWebRequest發(fā)送帶有JSON Body的POST請求實現(xiàn)
本文主要介紹了C#通過HttpWebRequest發(fā)送帶有JSON Body的POST請求實現(xiàn),文中通過示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2021-09-09