
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
asprise-scan-scanner-twain-wia-api
Advanced tools
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.
Asprise Scan C# VB.NET SDK ◎ 64bit and 32bit Applications Scanning from TWAIN WIA Flatbed and ADF Scanners as PDF, TIFF or JPG
static class Program { // Program.cs [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new asprise_imaging_api.SampleScanForm()); // ☜ Run SampleScanForm } }
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()));
Developer's Guide and API docs: http://asprise.com/c%23-vb.net-scanner-api/twain-wia-document-scan-library-sdk-samples-docs.html
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
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
FAQs
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.
We found that asprise-scan-scanner-twain-wia-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.