本文介绍了捕获屏幕截图并在图片框中显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,



这是我在StackOverflow中得到的答案,但我不明白。



Hello,

This is the answer i got in StackOverflow but i didn't understand it.

Rectangle bounds = Screen.GetBounds(Point.Empty);
using(Bitmap bitmap = new Bitmap(bounds.Width, bounds.Height))
{
    using(Graphics g = Graphics.FromImage(bitmap))
    {
         g.CopyFromScreen(Point.Empty, Point.Empty, bounds.Size);
    }
    bitmap.Save("test.jpg", ImageFormat.Jpeg);
}







可能是因为我之前没有使用位图 。



如果可能,请说清楚这些代码行。

另外,我如何了解位图。请建议一些文章或教程,但不是MSDN。从那里学习是非常困难的。



任何形式的帮助将不胜感激

推荐答案



这篇关于捕获屏幕截图并在图片框中显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 14:00