Thanks for Downloading Dynamic Web TWAIN 30-Day Trial!
Your download will start shortly. If your download does not begin, click here to retry.
Capture/Image Source
Can the Dynamic Web TWAIN SDK detect whether papers exist on the flatbed?
Yes. You can use IfFeederLoaded API to inspect whether papers are loaded in the feeder of your current scanner. Before calling this API, please use IfPaperDetectable to inspect whether your current scanner hardware has a sensor to detect papers.
Code Example:
DWTObject.SelectSource();
DWTObject.OpenSource();
if(DWTObject.IfPaperDetectable)
if(DWTObject.IfFeederLoaded)
DWTObject.AcquireImage();
else
alert("There is no paper in the feeder.");
...
...