博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Utils
阅读量:5231 次
发布时间:2019-06-14

本文共 832 字,大约阅读时间需要 2 分钟。

using System;using System.Drawing;using System.Windows.Forms;namespace zhbCapture{	/// 	/// Description of Utils.	/// 	public class Utils	{		public static Bitmap screenBmp, srcScreenBmp;		public static int screenWidth = Screen.PrimaryScreen.Bounds.Width;		public static int screenHeight = Screen.PrimaryScreen.Bounds.Height;		public static Size screenSize = Screen.PrimaryScreen.Bounds.Size;        public static Point screenLocation = new Point(0, 0);        public static Rectangle screenRect = new Rectangle(screenLocation, screenSize);		public Utils()		{					}		public static Bitmap getScreen(){						Bitmap bitmap = new Bitmap(screenWidth, screenHeight);			using (Graphics g = Graphics.FromImage(bitmap)) {				g.CopyFromScreen(0,0,0,0,screenSize);				return bitmap;			}		}	}}

  

转载于:https://www.cnblogs.com/cause/p/3837872.html

你可能感兴趣的文章
P1305-新二叉树
查看>>
MySQL增强版命令行客户端连接工具(mycli)
查看>>
IIS如何配置可以下载APK、IPA文件
查看>>
gulp-rev-collector自定义修改rev-manifest.json后替换不成功的问题分析
查看>>
zepto的tap事件的点透问题的几种解决方案
查看>>
诡异的localhost无法连接
查看>>
Flash反编译-跟我学Action Script Viewer 2013(2)
查看>>
字符编码转换
查看>>
Enterprise Solution 开源项目资源汇总 Visual Studio Online 源代码托管 企业管理软件开发框架...
查看>>
记录 !ajax 传递数组的坑
查看>>
Java 学习资料整理
查看>>
spring事务探索
查看>>
SAXParser 解析器和 XMLEventReader(读取XML文档)
查看>>
windows下的时间同步间隔
查看>>
Nginx+Tomcat动静分离及Nginx优化
查看>>
集腋成裘-13-git使用-02进阶篇
查看>>
步步为营-17-FileStream-文件加密/解密
查看>>
win 10 安装 maven安装包
查看>>
如何一行jquery代码写出tab标签页(链式操作)
查看>>
【leetcode】First Missing Positive
查看>>