Salut j'utilise ce code pour lancer une capture d'image :
CameraCaptureDialog cameraCaptureDialog = new CameraCaptureDialog();
cameraCaptureDialog.Owner = this;
cameraCaptureDialog.Title = "Take Photo";
cameraCaptureDialog.Mode = CameraCaptureMode.Still;
cameraCaptureDialog.Resolution = new Size(1600,1200);
cameraCaptureDialog.StillQuality = CameraCaptureStillQuality.High;
cameraCaptureDialog.ShowDialog();
Aprés ceci je n'obtien qu'une resolution de 640x480,

sauf si je fixe cameraCaptureDialog.Resolution à une taille inferieure a 640x480 où la, il suit les instruction du code et me fixe la bonne resolution. cameraCaptureDialog.Resolution est-elle limitée?

Merci a tous ++