【VS2010 C# 代码】截屏并且写上文字做成图片输出
MicrosoftVisualStudio2010做的C#截屏并且写上文字做成图片输出实例,主要代码:BitmapbitmapScreen=newBitmap(iScreenWidth,iScreenHeight);BitmapbitmapOut=newBitmap(600,200);GraphicsgraOut=Graphics.FromImage(bitmapOut);//创建画笔graOut.FillRectangle(Brushes.White,newRectangle(0,0,600,600));//把b1涂成白色FontfontText=newFont("宋体"
用户评论