Web Demos
BARCODE READER SDK DEMO
Explore the flexibe barcode reading settings to optimize for your specific usage scenario.
WEB TWAIN SDK DEMO
Try the most popular web scanner features: scan images, import local images and PDF files, edit, save to local, upload to database, and etc.
Dynamic .NET TWAIN allows you to zoom images using hotkeys. Below is a simple sample in C# to use the Ctrl key + mouse wheel to zoom images in Dynamic .NET TWAIN.
private void btnScan_Click(object sender, EventArgs e)
{
//show current image only
dsViewer1.SetViewMode(-1, -1);
//enable zooming image using hot key
dsViewer1.EnableInteractiveZoom = true;
}
latest version