Skip to content

Commit 6e53a71

Browse files
committed
Update use-wia-insteadof-wiatwain.md
1 parent cb6d4c6 commit 6e53a71

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

faq/use-wia-insteadof-wiatwain.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,18 @@ Compared with TWAIN, the WIA protocol is built-in supported by Windows OS. No ex
2424
WIA offers standardized hardware compatibility and a stable driver environment, making it easier to integrate imaging capabilities into the web scanning applications.
2525

2626

27-
### Difference between `WIASCANNER` and `WIATWAINSCANNER`
27+
### Difference between WIASCANNER and WIATWAINSCANNER
2828

29-
We add a new Enumaration `WIASCANNER` to [`Dynamsoft.DWT.EnumDWT_DeviceType`](https://www.dynamsoft.com/web-twain/docs/info/api/Dynamsoft_Enum.html?ver=latest&&cVer=true#dynamsoftdwtenumdwt_devicetype) to support WIA protocol. There is another Enumaration named `WIATWAINSCANNER` which is a WIA Source mapped through the TWAIN protocol after packaging by Microsoft and it was used to support WIA in the previous version.
29+
30+
We add a new Enumaration `WIASCANNER` to [Dynamsoft.DWT.EnumDWT_DeviceType](https://www.dynamsoft.com/web-twain/docs/info/api/Dynamsoft_Enum.html?ver=latest&&cVer=true#dynamsoftdwtenumdwt_devicetype) to support WIA protocol. There is another Enumaration named `WIATWAINSCANNER` which is a WIA Source mapped through the TWAIN protocol after packaging by Microsoft and it was used to support WIA in the previous version.
3031

3132
If you are using `WIATWAINSCANNER` before and would like to use `WIASCANNER` from version 18.2 instead, you need to modify the APIs used in your code accordingly.
3233

33-
| `WIASCANNER` | `WIATWAINSCANNER`|
34+
| WIASCANNER | WIATWAINSCANNER |
3435
|:-|:-|
3536
| [GetDeviceAsync()](https://www.dynamsoft.com/web-twain/docs/info/api/WebTwain_Acquire.html#getdevicesasync) | [GetSourceNames()](https://www.dynamsoft.com/web-twain/docs/info/api/WebTwain_Acquire.html#getsourcenames), [GetSourceNamesAsync()](https://www.dynamsoft.com/web-twain/docs/info/api/WebTwain_Acquire.html#getsourcenamesasync)|
3637
| [SelectDeviceAsync()](https://www.dynamsoft.com/web-twain/docs/info/api/WebTwain_Acquire.html#selectdeviceasync) | [SelectSourceByIndex()](https://www.dynamsoft.com/web-twain/docs/info/api/WebTwain_Acquire.html#selectsourcebyindex), [SelectSourceByIndexAsync()](https://www.dynamsoft.com/web-twain/docs/info/api/WebTwain_Acquire.html#selectsourcebyindexasync) |
3738
| [SelectSourceAsync()](https://www.dynamsoft.com/web-twain/docs/info/api/WebTwain_Acquire.html#selectsourceasync) | [SelectSource()](https://www.dynamsoft.com/web-twain/docs/info/api/WebTwain_Acquire.html#selectsource) |
3839
| [AcquireImageAsync()](https://www.dynamsoft.com/web-twain/docs/info/api/WebTwain_Acquire.html#acquireimageasync) | [AcquireImage()](https://www.dynamsoft.com/web-twain/docs/info/api/WebTwain_Acquire.html#acquireimage) |
3940

40-
*`WIATWAINSCANNER` is still available.*
41+
*`WIATWAINSCANNER` is still available in version 18.2.*

0 commit comments

Comments
 (0)