Exemplo n.º 1
0
        /// <summary>
        ///     What happens after initialization.
        /// </summary>
        private void MainForm_Load(object sender, EventArgs e)
        {
            List <string> devices = WIAScanner.GetDevices();

            foreach (string device in devices)
            {
                lbDevices.Items.Add(device);
            }

            if (lbDevices.Items.Count == 0)
            {
                MessageBox.Show("Não foi detectado nenhum dispositivo que suporte scanner por Windows Image Acquisition (WIA).");
                this.Close();
            }
            else
            {
                lbDevices.SelectedIndex = 0;
            }
        }
Exemplo n.º 2
0
        /// <summary>
        ///     An action for the scan button.
        ///     Try reach the selected device and save the image in a local file.
        /// </summary>
        private void btnScan_Click(object sender, EventArgs e)
        {
            string fullDestinationFileDir = Program.DESTINATION_ROOT_DIR + DateTime.Now.ToString("yyyy-MM-dd HHmmss") + ".jpg";

            try
            {
                Directory.CreateDirectory(Program.DESTINATION_ROOT_DIR);

                List <Image> images = WIAScanner.Scan((string)lbDevices.SelectedItem);
                foreach (Image image in images)
                {
                    image.Save(fullDestinationFileDir, ImageFormat.Jpeg);
                }
            }
            catch (IOException ioException)
            {
                MessageBox.Show("Não conseguiu criar a pasta " + Program.DESTINATION_ROOT_DIR + ": " + ioException.Message);
            }
            catch (Exception genericError)
            {
                MessageBox.Show("Ocorreu um erro desconhecido ao tentar salvar a imagem: " + genericError.Message);
            }
        }