c# 寻找一个高清截屏的方法,图像ID 尺寸 396 x 69, 宽度 396像素 高度 69像素 ,要求用C#实现。

c# 寻找一个高清截屏的方法,图像ID
尺寸
396 x 69,
宽度
396像素
高度
69像素
,要求用C#实现。

设置下Graphics 的一些图像属性设置成hight级别 比如抗锯齿这些


 g.SmoothingMode = SmoothingMode.HighSpeed;
 g.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;
 g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
 g.PixelOffsetMode = PixelOffsetMode.HighQuality;

截屏方法 可以参考这个

http://www.yuantk.com/weblog/7221810f-9750-4285-8c20-2732fb55e013.html