Skip to content
Advertisement

Get image from a fingerprint using Python and Ctypes

I’m trying to get an image from the fingerprint scanner Futronic FS88h, here is what I’ve been doing until now.

JavaScript

With this I’m able to check if the finger is present and it actually retrieves some info, but I need to get the image from the device and I’m not quite sure how to do it, I’ve been trying this:

JavaScript

But this only returns a bool, I’d love to know how to get the image or some data that I can convert into a image. This is the .dll that I’m using.

ftrScanAPI.h

I’ve found this piece of code that gets the image, however, I don’t know how I should port it to Python, here’s the piece of code from this question.

JavaScript

Advertisement

Answer

There’s a C# example here. Using it as a reference:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement