Document Scanner in ASP.Net Core MVC

GFS

New member
Joined
Jul 1, 2025
Messages
2
Programming Experience
Beginner
Dear *.*,

I am a beginner in ASP.Net Core MVC C#, I have a project that will scan a Document and save it to a Table, is there a free API for this?

Thanks in advance....
 
A scanned document is just an image. Inserting an image into a database table as a blob is simple, but usually not recommended. The usual recommendation is to keep the image file outside of the database in a filesystem, and then have the database point to that file.
 
A scanned document is just an image. Inserting an image into a database table as a blob is simple, but usually not recommended. The usual recommendation is to keep the image file outside of the database in a filesystem, and then have the database point to that file.

Thank you sir...

is there a sample code for my references, and also a free API?
 
Is it really for reference? Or is this a case of "gimme-the-codez"?
 
Back
Top Bottom