Download drivers for biometric ID (fingerprint) readers used with Procare Software. Only install these drivers if directed to do so by a member of the Procare Technical Support team.
Eikon Touch
DigitalPersona products utilize optical fingerprint scanning technology for superior image quality and product reliability. The combination of a U.are.U 4500 Fingerprint Reader with the DigitalPersona IDentity Engine produces an unmatched ability to recognize even the most difficult fingerprints. Specifications of U.are.U 4500 Reader. Fingerprint sdk for php. How to Find Affordable Biometric SDK for PHP, It supports multiple biometric modalities including fingerprint, finger vein, and palm vein recognition with the help of another revolutionary biometric solution Hybrid If at all what you want is to Integrate a DigitalPersona Fingerprint Scanner with a PHP Web Application and add Biometric Authentication into your PHP web.
The combination of a Crossmatch Digital Persona Eikon Touch 510 Fingerprint Reader with typically the DigitalPersona Identity Engine creates an unmatched ability in order to recognize even the most difficult fingerprints. This product will not come with CD, software program. Digitalpersona Fingeprint Scanners for Drug Testing Centers (IDTOMIS) Call us for orders: 029571700 / 7 Compatible models for IDTOMIS: Digitalpersona U.are.U 4000b(isafe) - php 4,500.00/unit VAT-inclusive DigitalPersona U.are.U 4500 Reader- Php 5,500.00/unit VAT-inclusive We are on stock.
The Eikon Touch drivers are installed automatically during the Procare installation. Contact Support if you have any issues with the driver.
Digital Persona
Select the appropriate link below. Save the file to your computer. Then dbl-click the file to install the USB biometric ID drivers.

32-bit
64-bit
Trouble Downloading?
If you have trouble downloading/installing these drivers please try using a different browser. For example, if you have trouble while using Firefox or Chrome, try Internet Explorer instead.
In a previous post, I used the BioMini fingerprint scanner to generate a bitmap image of a fingerprint. I used the Neurotechnology Free Fingerprint Verification SDK with the BioMini hardware.
As part of the process, I created an interface which allowed me to enroll a fingerprint, and create the image, which defines a good surface for all I want to do at the moment. I designed this interface based on the very small amount of knowledge I have of fingerprint scanners and SDKs – so I was still interested to see if this interface would be useful (or even workable) for another scanner and SDK.
To test this, I started looking for other scanners and SDKs – and one candidate which looked very suitable was the digitalPersona U.are.U 4000B sensor. This has a .NET SDK available, but make sure that when you are buying the scanner device that you get the SDK as well – it’s possible to purchase these separately.

This SDK comes with a couple of sample Windows applications – but I’ve a personal preference to try to get things to work in a console application, just because it allows me to focus more on the code to get the scanner working (and less on the code to get the Windows app working). So I decided to write a Console application for the U.are.U 4000B scanner.
There are a few simple steps:
- Add references to the libraries DPFPDevNET.dll and DPFPShrNET.dll, both of which come with the SDK;
- Instantiate a DPFP.Capture.Capture object;
- Associate an event handler class with this Capture object, which has handlers for the events:
- OnComplete;
- OnFingerGone;
- OnFingerTouch;
- OnReaderConnect;
- OnReaderDisconnect;
- OnSampleQuality.
- Begin capturing a fingerprint from the scanner by calling the StartCapture method from the Capture object.
- After placing your finger on the reader, the event OnFingerTouch will be fired.
- After the scan has successfully complete, the OnComplete event is fired.
- A parameter of the OnComplete handler contains information about the scanned fingerprint.
- Stop capturing a fingerprint from the scanner by calling the StopCapture method from the Capture object.
This seemed pretty straightforward – I wrote the class below.
Digital Persona Fingerprint Scanner Php Download
And this allowed me to write the following simple program.
So this is a good start – I was able to capture a fingerprint and save it to my desktop. However, this implementation doesn’t use the interface I designed last time, which has separate methods for Enroll and CreateBitmapFile. I refactored the code slightly to implement this interface.
This compiled, and I expected to be able to run the code below.
Digital Persona Fingerprint Scanner Hp
Unfortunately there was a problem – when designing the implementation, I hadn’t taken account of the fact that the device and SDK is driven by events – so after I start running the program, it’ll happily wait for someone to put their finger on the device screen and won’t block the main thread. So control flows straight on after the call to Enroll to the method which tries to create an image. However, because the fingerprint sample might hadn’t been successfully scanned at that point, I got a null reference exception.
In the second part of this, I’ll describe how I fixed this problem, using the ManualResetEvent object.