27/02/2012, 13:16
|
| | Fecha de Ingreso: noviembre-2007
Mensajes: 504
Antigüedad: 17 años, 1 mes Puntos: 2 | |
Respuesta: Capturar pantalla y guardarla en disco Hola,
Ya resolvi el problema, el error sale porque estoy intentado guardar directamente en C: (Raiz) y no tengo permisos, ya cambie la ruta y no tengo problemas:
Rectangle region = Screen.AllScreens[0].Bounds;
Bitmap bitmap = new Bitmap(region.Width, region.Height, PixelFormat.Format32bppPArgb);
Graphics graphic = Graphics.FromImage(bitmap);
graphic.CopyFromScreen(region.Left, region.Top, 0, 0, region.Size);
bitmap.Save(@"C:\Users\franco.lr\Desktop\pantalla. jpg", ImageFormat.Jpeg); |