You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

asprise-scan-scanner-twain-wia-api

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asprise-scan-scanner-twain-wia-api

Probably the only scanning SDK that works for both 64bit and 32bit WinForms and WPF applications. Asprise Scanning and Imaging SDK offers a high performance API library for TWAIN WIA scanners so that you can acquire images from and have total control on almost all kinds of scanners and webcams on Windows 32bit and x64. Equip your C# VB.NET Windows Forms and WPF applications with the functionality of high speed document scanning (e.g., bulk scan ADF to multi-page PDF) and image acquisition. Key features include: * Supports almost all scanners: Acer, AGFA, Brother, Canon, Dell, Epson, Fujitsu, HP, IBM, Kodak, Konica Minolta, Lexmark, NEC, Nikon, Olympus, Panasonic, Ricoh, Samsung, Xerox and many more; * Scans documents to memory or to files and uploads to web servers or any combination; * Multiple output formats supported: BMP, JPEG, PNG, multi-page TIFF (LZW, ZIP, CCITT compressions), and PDF; * Generates thumbnail images in any format supported at the same time the images are acquired; * Supports PDF/A for compliance requirement and PDF with CCITT G4 compression for ultra small file size; * Fully customizable high speed ADF (automatic document feeder) duplex bulk scan as well as flatbed scanning; * Supports advanced features of scanners: imprinter, endorser, barcode and patchcode; * Efficient barcode reading and recognition (CODE 128, EAN 8/13, UPC, Code 3 of 9, QR, etc.) - even if the scanner doesn't support it; * Sophisticated configurable blank page detection; * Modern API and documentation enable you to jump start quickly. Visit http://asprise.com for more details. For inquiries, please email us at support@asprise.com.

12.0.0
nugetNuGet
Version published
Maintainers
1
Created
Source

Asprise Scan C# VB.NET SDK ◎ 64bit and 32bit Applications Scanning from TWAIN WIA Flatbed and ADF Scanners as PDF, TIFF or JPG

► TO RUN THE SAMPLE SCAN APPLICATION

static class Program { // Program.cs [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new asprise_imaging_api.SampleScanForm()); // ☜ Run SampleScanForm } }

► PERFORM SCAN IN JUST A FEW LINES

using asprise_imaging_api;

Result result = new AspriseImaging().Scan(new Request() .SetTwainCap(TwainConstants.ICAP_PIXELTYPE, TwainConstants.TWPT_RGB) .SetPromptScanMore(true) // prompt to scan more pages .AddOutputItem(new RequestOutputItem(AspriseImaging.OUTPUT_SAVE, AspriseImaging.FORMAT_JPG) .SetSavePath(".\${TMS}${EXT}")), // Environment variables in path will be expanded "select", true, true); // "select" prompts device selection dialog.

List files = result == null ? null : result.GetImageFiles(); Console.WriteLine("Scanned: " + string.Join(", ", files == null ? new string[0] : files.ToArray()));

► SCAN PROGRAMMING GUIDE

Developer's Guide and API docs: http://asprise.com/c%23-vb.net-scanner-api/twain-wia-document-scan-library-sdk-samples-docs.html

► DOWNLOAD SOURCE CODE OF SCAN .NET API & DEMOS

Source code of Asprise Scan .NET API & demos: http://asprise.com/c%23-vb.net-scanner-api/twain-wia-windows-adf-pdf-component-download.html

► CONTACT ASPRISE

We're ready to help. Please send your inquiries through:

Email: contact@asprise.com Web: http://asprise.com/c%23-vb.net-scanner-api/twain-wia-scan-pdf-library-overview.html

Keywords

Scan

FAQs

Package last updated on 16 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts