I have a new requirement in my AngularJS application. When a new client (patient, in my case) is coming to the medical center for the first time, I must have the possibility to scan his/her ID card, and in this way the admission process can be speeded up, because every data included in the ID card can be automatically read into their corresponding form fields. How can I do this from a computer (not from a mobile device)?
The idea is having this possibility, so the form is automatically completed into my Angular JS form. I suppose every read field should be loaded into a JSON structure (one JSON structure for the whole form). If all data is correct, it is sent to my Node JS backend as usual.
Is it possible to do this in any way? Thank you very much.