C# - Form Capture
C#에서 폼화면을 캡쳐할려면, Graphics라는 클래스의 CopyFromScreen 매소드를 이용해야합니다.먼저 폼 소스에서 아래의 매소드를 추가해주세요. public void FormCapture(Size uFormSize, String uFileName) { Bitmap bitmap = new Bitmap(uFormSize.Width, uFormSize.Height); Graphics g = Graphics.FromImage(bitmap); g.CopyFromScreen(new Point(this.Bounds.X, this.Bounds.Y), new Point(0, 0), uFormSize); bitmap.Save(uFileName, System.Drawing.Imaging.ImageFormat.J..
2015.02.20