How to integration Digital persona 4500 fingerprint reader in asp.net core(Razor Page)?
Loading
How to integration Digital persona 4500 fingerprint reader in asp.net core(Razor Page)?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Radhe GuptaPosted Jul 7, 2023, 6:28 AM
Thanks Deepak Rawat, Can You Share Some Sample regarding this?
this "SecuGen.FDxSDKPro.Windows" not Showing in NuGet package Manager.
Deepak RawatPosted Jul 7, 2023, 6:22 AM
Integrating a Digital Persona 4500 fingerprint reader into an ASP.NET Core Razor Pages application involves the following steps:
Install Required Packages:
Configure Dependencies:
Startup.csfile, add the following code inside theConfigureServicesmethod to configure the fingerprint reader services:Create an Interface:
ISecuGenReader.cs, which defines the methods required for interacting with the fingerprint reader. It might include methods likeInitialize(),CaptureImage(), andMatchFingerprint().Implement the Interface:
ISecuGenReaderinterface in a class, for example,SecuGenReader.cs, which provides the actual implementation of the methods. Inside this class, you will interact with the Digital Persona fingerprint reader SDK.Create Razor Pages:
Inject the Reader:
ISecuGenReaderinterface using the@injectdirective, allowing you to access the fingerprint reader implementation.Handle Fingerprint Reader Operations:
ISecuGenReaderinterface. For example, when a button is clicked, you can call theInitialize()method to initialize the reader,CaptureImage()to capture a fingerprint image, andMatchFingerprint()to match the captured fingerprint with a stored template.Display Results: