You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _articles/extended-usage/ocr.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ Dynamic Web TWAIN provides an OCR add-on to extract text in your scanned images.
20
20
21
21
### Step One - Install the OCR Package
22
22
23
-
Download `DynamicWebTWAINOCRPack.zip`, unzip it and run `Install.cmd` as admin to install the OCR package. It will copy the `ocr` folder to the service's [installation folder](/_articles/extended-usage/dynamsoft-service-configuration.md#installation-folder).
23
+
Download `DynamicWebTWAINOCRPack.zip`, unzip it and run `Install.cmd` as admin to install the OCR package. It will copy the `ocr` folder to the service's [installation folder](/_articles/extended-usage/dynamsoft-service-configuration.md#installation-folder). (You need to install Dynamic Web TWAIN Service beforehand.)
24
24
25
25
### Step Two - Write a Basic Document Scanning Page
26
26
@@ -264,7 +264,7 @@ Here is the complete code of the demo.
264
264
<div>Output:</div>
265
265
<inputtype="button"value="Save as PDF"onclick="SaveAsPDF();" />
266
266
<label>Option:
267
-
<select>
267
+
<selectid="outputFormat">
268
268
<optionvalue="extralayer">With Extra Text Layer</option>
269
269
<optionvalue="plaintext">Plain Text</option>
270
270
</select>
@@ -279,6 +279,7 @@ Here is the complete code of the demo.
279
279
<scripttype="text/javascript">
280
280
var DWTObject;
281
281
var storedOCRResults = {};
282
+
282
283
Dynamsoft.DWT.RegisterEvent("OnWebTwainReady", function () {
0 commit comments