Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fetch Finger Print using javascript(client side)

i am trying to access my usb biometric device, is there any way to fetch finger print from client side using javascript. my device is (U.are.U 4500).

like image 454
Qasim Khokhar Avatar asked Apr 21 '14 15:04

Qasim Khokhar


1 Answers

You can't access a USB peripheral directly through javascript or HTML as it is not included in any standard API. If there is a signed java applet available for it which exposes certain events and methods you could interface the javascript with the java applet to achieve some level of interaction but there is no way to achieve it through a strictly javascript/html manner.

like image 97
Chris Rutherfurd Avatar answered Oct 10 '22 14:10

Chris Rutherfurd