APEX Plug-in to scan documents using Dynamic Web TWAIN.
You can install the plugin using region_type_plugin_com_dynamsoft_dwt.sql
. Detailed Guide
It can display a modal to scan documents and display the selected scanned document in an image element.
The following events are supported:
apex.region("region_id").showModal(); => show the document scanner,
apex.region("region_id").hideModal(); => hide the document scanner,
apex.region("region_id").getBase64(); => get the base64 of the scanned document,
apex.region("region_id").getFilename(); => get the filename of the uploaded document. The file is uploaded to a remote server if the host and port are specified.
Attributes:
- width
- height
- host
- port
- license
You can apply for a trial license here.
Check out the blog for details: How to Scan Documents in an Oracle APEX Application
- You can upload the documents to a remote HTTP server by setting up the host and port. You can find the details in the blog.
- You can get the base64 of the documents and then insert it into the Oracle Database.