博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 截取屏幕局部
阅读量:5034 次
发布时间:2019-06-12

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

//截取全屏图象        private void btnFullScreen_Click(object sender, EventArgs e)        {            //创建图象,保存将来截取的图象            Bitmap image = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);            Graphics imgGraphics = Graphics.FromImage(image);            //设置截屏区域            imgGraphics.CopyFromScreen(0, 0, 0, 0, new Size(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height));            //保存            SaveImage(image);        }//保存图象文件        private void SaveImage(Image image)        {            if (saveFileDialog.ShowDialog(this) == DialogResult.OK)            {                string fileName = saveFileDialog.FileName;                string extension = Path.GetExtension(fileName);                if (extension == ".jpg")                {                    image.Save(fileName, ImageFormat.Jpeg);                }                else                {                    image.Save(fileName, ImageFormat.Bmp);                }            }        }

转载于:https://www.cnblogs.com/Kconnie/p/4676261.html

你可能感兴趣的文章
Excel VBA 学习总结 - 基础知识
查看>>
深入.NET平台和C#编程笔记第二章
查看>>
JSON数据填充表格——(三)
查看>>
田园的饭可好吃了 2018年中北大学新生赛
查看>>
asp.net json,对象,字符串的相互转换
查看>>
Oracle优化面试题
查看>>
Spring入门之二-------SpringIoC之实例化Bean以及注入Bean
查看>>
Centos6和7的区别
查看>>
338. Counting Bits
查看>>
MySQL临时表
查看>>
关于使用jqmobi前端框架在phonegap平台上开发时的日期时间选择控件
查看>>
HDU 4638 Group (莫队算法||线段树离散查询)
查看>>
精神到处文章老,学问深时意气平(努力方向)——Leo2014年终总结
查看>>
Android-ListView 下拉刷新
查看>>
批量判断流量大于300的小脚本
查看>>
SDN
查看>>
cf 11B Jumping Jack(贪心,数学证明一下,,)
查看>>
POJ 2418 Hardwood Species(STL在map应用)
查看>>
Python开发之路
查看>>
Codeforces 449.C Jzzhu and Apples
查看>>