-
Notifications
You must be signed in to change notification settings - Fork 0
/
EscanerDocumento.cs
187 lines (149 loc) · 5.23 KB
/
EscanerDocumento.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
using AForge.Video.DirectShow;
using AForge.Video;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Drawing.Imaging;
using System.IO;
namespace CapturarIngresos
{
public partial class EscanerDocumento : Form
{
private FilterInfoCollection MisDispositivos;
private VideoCaptureDevice MiCamara;
bool SacoprimerFoto = false;
string DniRecibido;
string rutaCompletaFrente;
string rutaCompletaDorso;
string rutafotos = "R:\\sistemas_nico\\CapturarIngresosVMate\\ImagenesCapturadas\\LicenciasDeConducir\\";
public EscanerDocumento(string dni)
{
InitializeComponent();
this.DniRecibido = dni;
}
//Inicializacion de WeCam
private async Task CargarDispositivosAsync()
{
await Task.Run(() =>
{
MisDispositivos = new FilterInfoCollection(FilterCategory.VideoInputDevice);
if (MisDispositivos.Count > 0)
{
for (int i = 0; i < MisDispositivos.Count; i++)
{
if (MisDispositivos[i].Name.ToString() == "USB CAMERA")
MiCamara = new VideoCaptureDevice(MisDispositivos[i].MonikerString);
}
MiCamara.NewFrame += new NewFrameEventHandler(Capturando);
MiCamara.Start();
//VideoCapabilities[] resoluciones = MiCamara.VideoCapabilities;
//int indiceResolucion = 2;
//if (indiceResolucion >= 0 && indiceResolucion < resoluciones.Length)
//{
// MiCamara.VideoResolution = resoluciones[indiceResolucion];
//}
//else
//{
// MessageBox.Show("El índice de resolución seleccionado está fuera de rango.");
//}
}
});
}
private void Capturando(object sender, NewFrameEventArgs e)
{
Bitmap Image = (Bitmap)e.Frame.Clone();
if (!SacoprimerFoto)
{
pictureBox1.Image = Image;
}
else
{
pictureBox2.Image = Image;
}
}
private void CerrarCamara()
{
if (MiCamara != null && MiCamara.IsRunning)
{
MiCamara.SignalToStop();
MiCamara = null;
}
}
private async void EscanerDocumento_Load(object sender, EventArgs e)
{
await CargarDispositivosAsync();
}
private void EscanerDocumento_FormClosing(object sender, FormClosingEventArgs e)
{
if (MiCamara != null && MiCamara.IsRunning)
{
this.DialogResult = DialogResult.Cancel;
CerrarCamara();
}
}
private void ibSacarFotoFrente_Click(object sender, EventArgs e)
{
if (DniRecibido != null)
{
try
{
CerrarCamara();
DateTime now = DateTime.Now;
string nombreArchivo = string.Format($"{DniRecibido}Frente.jpg", now);
rutaCompletaFrente = Path.Combine(rutafotos, nombreArchivo);
SacoprimerFoto = true;
}
catch (Exception)
{
MessageBox.Show("No hay ninguna imagen para capturar.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
else
{
MessageBox.Show("Primero tiene que rellenar los datos");
}
}
private void ibSacarFotoDorso_Click(object sender, EventArgs e)
{
if (DniRecibido != null)
{
try
{
CerrarCamara();
DateTime now = DateTime.Now;
string nombreArchivo = string.Format($"{DniRecibido}Dorso.jpg", now);
rutaCompletaDorso = Path.Combine(rutafotos, nombreArchivo);
}
catch (Exception)
{
MessageBox.Show("No hay ninguna imagen para capturar.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
else
{
MessageBox.Show("Primero tiene que rellenar los datos");
}
}
private async void ibRefresh_Click(object sender, EventArgs e)
{
if (SacoprimerFoto)
{
await CargarDispositivosAsync();
pictureBox2.Refresh();
}
}
private void ibAceptar_Click(object sender, EventArgs e)
{
pictureBox1.Image.Save(rutaCompletaFrente, ImageFormat.Jpeg);
pictureBox2.Image.Save(rutaCompletaDorso, ImageFormat.Jpeg);
this.DialogResult = DialogResult.OK;
this.Close();
}
}
}