There is this great open-source OCR component that Google has been developing: http://code.google.com/p/tesseract-ocr/
They have a new version out (version 3) at the beginning of October 2010.
But this new version no longer has a working C wrapper, and it's up to somebody in the Delphi community to get it to work from inside Delphi -- I'm trying to do it because I badly need it and nobody else is in a hurry to do it but I have no idea what I'm doing when it comes to DLLs and converting C to Delphi. That's where I could use your help.
The clues I have picked up are that I need Dependency Walker to somehow prevent 'name-mangling' (no idea what that means). The actual DLL API methods are in the C files - and presumably the DLL function-names you see in Dependency-Walker will match the functions in the API file.
Here's everything you'll need to help: You will need a folder with the tessdll.dll in it and also leptonlib.dll just needs to be there. You'll need a subfolder called 'tessdata', and inside the folder will be your 'language data files' - [check the downloads page on the site]
Here's the Windows installer just so you can see the DLL in action: [check the downloads page on the site]
To get this working for Delphi, you'll have your executable in the same folder as the DLL. You'll then need to know what to call in the DLL, and for that you can look in the C Source files: [check the source files on the downloads page on the site]
Thanks for any assistance.