.NET Scanning API [closed]

2019-01-21 04:33发布

Is there any free or commercial component written in .NET (no COM interop) that will work with most twain scanners?

10条回答
做个烂人
2楼-- · 2019-01-21 05:11

+1 for Atalasoft

Technical quibble: You can avoid COM, but you can't avoid Interop: TWAIN is a native Win32 or Win64 DLL that is not part of Windows proper and is unknown to the CLR, so at the bottom, either in your code or the component you use, there are Interop calls to unmanaged code. Given what I know about TWAIN drivers, maybe I should say to very unmanaged code...

I've always had the impression that WIA was great for digital cameras, OK for consumer flatbeds, and not a serious contender for 'production scanning' - meaning something like full-speed multipage scans from a document feeder, under application control, using a USD400+ scanner. I've never heard of anybody doing production scanning through WIA, but I'd sure like to hear from somebody who's done this.

查看更多
做自己的国王
3楼-- · 2019-01-21 05:14

The Accusoft Pegasus .NET component is called TwainPRO, and it's included in the ImagXpress SDK.

The ImageGear .NET toolkit from Accusoft Pegasus also includes a full-managed implementation of Twain.

查看更多
成全新的幸福
4楼-- · 2019-01-21 05:14

I just saw another Scanning question that referenced a 3rd party commercial product to add to the list: ImageMan

Looks like a single developer license starts at $325. I haven't used it personally, but is one of three or four products I'm evaluating.

查看更多
Anthone
5楼-- · 2019-01-21 05:16

In my company we use Pegasus. It's great.

查看更多
老娘就宠你
6楼-- · 2019-01-21 05:26

TwainDotNet

I've just wrapped up the code from Thomas Scheidegger's article (CodeProject: .NET TWAIN image scanning) into a Google code project: http://code.google.com/p/twaindotnet/

I've cleaned up the API a bit and added WPF support, so check it out. :)

查看更多
成全新的幸福
7楼-- · 2019-01-21 05:29

I found NTwain via Nuget, which satisfied me.

查看更多
登录 后发表回答