C#怎么做个桌面监控

我想用C#做个桌面的一个监控,我只监控我桌面某一处的变化,就比方说是(0,0,100,100)这个区域的监控,并且将图像放大,再显示在(500,0,700,200)这个区... 我想用C#做个桌面的一个监控,我只监控我桌面某一处的变化,就比方说是(0,0,100,100)这个区域的监控,并且将图像放大,再显示在(500,0,700,200)这个区域。我本来想实时截图,但是这样会导致很大的延迟,所以请求大侠帮忙,看看有没有好的方法。
我的这个程序只在本地运行的,不是远程的。
1楼说的放大镜我没用过,不过性质是这样的

我有邮箱,邮箱是980177174@qq.com

非常感谢你
展开
 我来答
songme2000
2010-10-11 · TA获得超过269个赞
知道小有建树答主
回答量:590
采纳率:0%
帮助的人:424万
展开全部
类似windows的放大镜程序?

等待楼下。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yinzuo1988
2010-10-11 · TA获得超过116个赞
知道答主
回答量:72
采纳率:0%
帮助的人:65.5万
展开全部
有邮箱吗 发你邮箱,
希望对你有帮助。。。

正好我在学习Graphics
就帮你做了一个。。。
我用的是visual studio 2008

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;
using System.Drawing.Drawing2D;

namespace TabletopMonitor
{
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
initData();
}

private Thread th;
delegate void SetImageCallBack(Image img);
private void initData()
{
th = new Thread(new ThreadStart(newThread));
}

private void newThread()
{
while (true)
{
try
{
copyscreen();
//Thread.Sleep(100);
}
catch
{
break;
}
}
}

private void MainForm_Load(object sender, EventArgs e)
{
th.Start();
}
public void copyscreen()
{
Rectangle rec = Screen.PrimaryScreen.Bounds;
Bitmap img = new Bitmap(100, 100);
Graphics g = Graphics.FromImage(img);

g.CopyFromScreen(rec.Location, new Point(0, 0), new Size(100, 100));//拷屏

img = KiResizeImage(img, 200, 200);
SetImage(img);
}

private void SetImage(Image img)
{
if (this.pbxMain.InvokeRequired)
{
SetImageCallBack set = new SetImageCallBack(SetImage);//委托实现刷新图片
this.pbxMain.Invoke(set, img);
}
else
{
this.pbxMain.Image = img;
}
}

private Bitmap KiResizeImage(Bitmap bmp, int newW, int newH)//图片缩放
{
Bitmap b = new Bitmap(newW, newH);
Graphics g = Graphics.FromImage(b);

g.InterpolationMode = InterpolationMode.HighQualityBicubic;
g.DrawImage(bmp, new Rectangle(0, 0, newW, newH), new Rectangle(0, 0, bmp.Width, bmp.Height), GraphicsUnit.Pixel);
g.Dispose();
return b;
}

}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式