dwt 18.5.1 → 19.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +14 -10
- package/README.md +17 -19
- package/dist/dist/{DynamsoftServiceSetup.deb → DynamicWebTWAINServiceSetup-arm64.deb} +0 -0
- package/dist/dist/DynamicWebTWAINServiceSetup.deb +0 -0
- package/dist/dist/{DynamsoftServiceSetup.msi → DynamicWebTWAINServiceSetup.msi} +0 -0
- package/dist/dist/{DynamsoftServiceSetup.pkg → DynamicWebTWAINServiceSetup.pkg} +0 -0
- package/dist/dist/DynamicWebTWAINServiceSetup.rpm +0 -0
- package/dist/dynamsoft.webtwain.min.js +49 -61
- package/dist/dynamsoft.webtwain.min.mjs +49 -61
- package/dist/src/dynamsoft.lts.js +5 -4
- package/dist/src/dynamsoft.webtwain.css +18 -10
- package/dist/src/dynamsoft.webtwain.viewer.css +4 -4
- package/dist/src/dynamsoft.webtwain.viewer.js +4 -4
- package/dist/types/Addon.PDF.d.ts +10 -2
- package/dist/types/Dynamsoft.d.ts +1 -1
- package/dist/types/WebTwain.Buffer.d.ts +1 -1
- package/dist/types/WebTwain.Util.d.ts +4 -0
- package/dist/types/WebTwain.Viewer.d.ts +45 -4
- package/dist/types/index.d.ts +2 -2
- package/dwt-openapi.yaml +4459 -0
- package/package.json +2 -2
- package/dist/dist/DynamsoftServiceSetup-arm64.deb +0 -0
- package/dist/dist/DynamsoftServiceSetup.rpm +0 -0
package/dwt-openapi.yaml
ADDED
|
@@ -0,0 +1,4459 @@
|
|
|
1
|
+
openapi: 3.0.1
|
|
2
|
+
info:
|
|
3
|
+
title: DWT
|
|
4
|
+
description: ''
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
tags:
|
|
7
|
+
- name: Server Control
|
|
8
|
+
- name: Scanner Control
|
|
9
|
+
- name: Document Management
|
|
10
|
+
- name: Document Processing
|
|
11
|
+
paths:
|
|
12
|
+
/server:
|
|
13
|
+
get:
|
|
14
|
+
summary: Get the server settings.
|
|
15
|
+
deprecated: false
|
|
16
|
+
description: |
|
|
17
|
+
Get the server settings. Some settings can only be retrieved by the admin.
|
|
18
|
+
operationId: getServerSettings
|
|
19
|
+
tags:
|
|
20
|
+
- Server Control
|
|
21
|
+
parameters: []
|
|
22
|
+
responses:
|
|
23
|
+
'200':
|
|
24
|
+
description: Successful operation
|
|
25
|
+
content:
|
|
26
|
+
application/json:
|
|
27
|
+
schema:
|
|
28
|
+
$ref: '#/components/schemas/ServerSettings'
|
|
29
|
+
example:
|
|
30
|
+
logLevel: 1
|
|
31
|
+
headers: {}
|
|
32
|
+
'405':
|
|
33
|
+
description: Method not allowed
|
|
34
|
+
content:
|
|
35
|
+
application/json:
|
|
36
|
+
schema: &ref_0
|
|
37
|
+
$ref: '#/components/schemas/Error'
|
|
38
|
+
example:
|
|
39
|
+
code: -2112
|
|
40
|
+
message: This endpoint only supports GET and PATCH.
|
|
41
|
+
statusCode: 405
|
|
42
|
+
headers: {}
|
|
43
|
+
security: []
|
|
44
|
+
patch:
|
|
45
|
+
summary: Update only specified server settings.
|
|
46
|
+
deprecated: false
|
|
47
|
+
description: >
|
|
48
|
+
Update only specified server settings. Some settings can only be updated
|
|
49
|
+
by the admin.
|
|
50
|
+
operationId: patchServerSettings
|
|
51
|
+
tags:
|
|
52
|
+
- Server Control
|
|
53
|
+
parameters: []
|
|
54
|
+
requestBody:
|
|
55
|
+
content:
|
|
56
|
+
application/json:
|
|
57
|
+
schema:
|
|
58
|
+
$ref: '#/components/schemas/ServerSettingsInput'
|
|
59
|
+
example: ''
|
|
60
|
+
responses:
|
|
61
|
+
'200':
|
|
62
|
+
description: Successful operation
|
|
63
|
+
content:
|
|
64
|
+
application/json:
|
|
65
|
+
schema:
|
|
66
|
+
type: object
|
|
67
|
+
properties:
|
|
68
|
+
logLevel:
|
|
69
|
+
type: integer
|
|
70
|
+
format: int32
|
|
71
|
+
default: 0
|
|
72
|
+
description: server log level.
|
|
73
|
+
example:
|
|
74
|
+
logLevel: 1
|
|
75
|
+
headers: {}
|
|
76
|
+
'400':
|
|
77
|
+
description: Bad request. e.g. parameter is invalid.
|
|
78
|
+
content:
|
|
79
|
+
application/json:
|
|
80
|
+
schema: *ref_0
|
|
81
|
+
example:
|
|
82
|
+
code: -2113
|
|
83
|
+
message: The parameter is not valid.
|
|
84
|
+
statusCode: 400
|
|
85
|
+
headers: {}
|
|
86
|
+
'405':
|
|
87
|
+
description: Method not allowed
|
|
88
|
+
content:
|
|
89
|
+
application/json:
|
|
90
|
+
schema: *ref_0
|
|
91
|
+
example:
|
|
92
|
+
code: -2112
|
|
93
|
+
message: This endpoint only supports GET and PATCH.
|
|
94
|
+
statusCode: 405
|
|
95
|
+
headers: {}
|
|
96
|
+
security: []
|
|
97
|
+
/server/version:
|
|
98
|
+
get:
|
|
99
|
+
summary: Get the server API version.
|
|
100
|
+
deprecated: false
|
|
101
|
+
description: In the future, the client can pass the API version to call different API versions.
|
|
102
|
+
operationId: getServerVersion
|
|
103
|
+
tags:
|
|
104
|
+
- Server Control
|
|
105
|
+
parameters: []
|
|
106
|
+
responses:
|
|
107
|
+
'200':
|
|
108
|
+
description: Successful operation
|
|
109
|
+
content:
|
|
110
|
+
application/json:
|
|
111
|
+
schema:
|
|
112
|
+
type: object
|
|
113
|
+
properties:
|
|
114
|
+
version:
|
|
115
|
+
type: string
|
|
116
|
+
description: server API version.
|
|
117
|
+
examples:
|
|
118
|
+
- '20240719'
|
|
119
|
+
compatible:
|
|
120
|
+
type: boolean
|
|
121
|
+
description: server is compatible with the client.
|
|
122
|
+
examples:
|
|
123
|
+
- true
|
|
124
|
+
headers: {}
|
|
125
|
+
'405':
|
|
126
|
+
description: Method not allowed
|
|
127
|
+
content:
|
|
128
|
+
application/json:
|
|
129
|
+
schema: *ref_0
|
|
130
|
+
example:
|
|
131
|
+
code: -2112
|
|
132
|
+
message: This endpoint only supports GET.
|
|
133
|
+
statusCode: 405
|
|
134
|
+
headers: {}
|
|
135
|
+
security: []
|
|
136
|
+
/device/scanners:
|
|
137
|
+
get:
|
|
138
|
+
summary: Retrieve a list scanners
|
|
139
|
+
deprecated: false
|
|
140
|
+
description: ''
|
|
141
|
+
operationId: getScanners
|
|
142
|
+
tags:
|
|
143
|
+
- Scanner Control
|
|
144
|
+
parameters:
|
|
145
|
+
- name: type
|
|
146
|
+
in: query
|
|
147
|
+
description: >
|
|
148
|
+
Device type. It can be one type or a combination. The default uses
|
|
149
|
+
TWAIN/TWAIN64/WIA/ICA/SANE.
|
|
150
|
+
required: false
|
|
151
|
+
schema: &ref_2
|
|
152
|
+
$ref: '#/components/schemas/ScannerType'
|
|
153
|
+
description: one value of ScannerType
|
|
154
|
+
examples:
|
|
155
|
+
- 16
|
|
156
|
+
responses:
|
|
157
|
+
'200':
|
|
158
|
+
description: Successful operation
|
|
159
|
+
content:
|
|
160
|
+
application/json:
|
|
161
|
+
schema:
|
|
162
|
+
type: array
|
|
163
|
+
items: &ref_3
|
|
164
|
+
$ref: '#/components/schemas/Scanner'
|
|
165
|
+
example:
|
|
166
|
+
- name: TWAIN2 FreeImage Software Scanner
|
|
167
|
+
type: 16
|
|
168
|
+
device: >-
|
|
169
|
+
{"deviceInfo":{"Manufacturer":"VFdBSU4gV29ya2luZyBHcm91cA==","ProductFamily":"U29mdHdhcmUgU2Nhbg==","ProductName":"VFdBSU4yIEZyZWVJbWFnZSBTb2Z0d2FyZSBTY2FubmVy","ProtocolMajor":2,"ProtocolMinor":1,"SupportedGroups":0,"Version":{"Country":1,"Info":"Mi4xLjMgc2FtcGxlIHJlbGVhc2UgMzJiaXQ=","Language":2,"MajorNum":2,"MinorNum":1}},"deviceType":16,"isSystemDefaultPrinter":false,"name":"VFdBSU4yIEZyZWVJbWFnZSBTb2Z0d2FyZSBTY2FubmVy"}
|
|
170
|
+
headers: {}
|
|
171
|
+
'400':
|
|
172
|
+
description: Bad request. e.g. parameter is invalid.
|
|
173
|
+
content:
|
|
174
|
+
application/json:
|
|
175
|
+
schema: *ref_0
|
|
176
|
+
example:
|
|
177
|
+
code: -2113
|
|
178
|
+
message: The parameter is not valid.
|
|
179
|
+
statusCode: 400
|
|
180
|
+
headers: {}
|
|
181
|
+
'405':
|
|
182
|
+
description: Method not allowed
|
|
183
|
+
content:
|
|
184
|
+
application/json:
|
|
185
|
+
schema: *ref_0
|
|
186
|
+
example:
|
|
187
|
+
code: -2112
|
|
188
|
+
message: This endpoint only supports GET.
|
|
189
|
+
statusCode: 405
|
|
190
|
+
headers: {}
|
|
191
|
+
security: []
|
|
192
|
+
/device/scanners/jobs:
|
|
193
|
+
post:
|
|
194
|
+
summary: Create a scan job
|
|
195
|
+
deprecated: false
|
|
196
|
+
description: >
|
|
197
|
+
You can scan with the specified scanner. If the scanner is not specified, the last used scanner or the defalut scanner will be used. You
|
|
198
|
+
can set capabilities of the scanner. You can show the scanner ui if you are
|
|
199
|
+
operating on the machine running Dynamic Web TWAIN Service. You can get scanned image with the job uid, or save to the
|
|
200
|
+
specified document. You can create a pending job with the specified
|
|
201
|
+
scanner. One scanner can only have one pending job. If the scanner is
|
|
202
|
+
shared, it is recommended to create a pending job for the specified scanner.
|
|
203
|
+
Default other requests for the job will only allow the domain when job
|
|
204
|
+
created.
|
|
205
|
+
|
|
206
|
+
Once the job was created, you have to delete the job manually unless you
|
|
207
|
+
set a jobTimeout and it times out.
|
|
208
|
+
operationId: createScanJob
|
|
209
|
+
tags:
|
|
210
|
+
- Scanner Control
|
|
211
|
+
parameters:
|
|
212
|
+
- name: X-DICS-LICENSE-KEY
|
|
213
|
+
in: header
|
|
214
|
+
description: Product key
|
|
215
|
+
required: true
|
|
216
|
+
example: ''
|
|
217
|
+
schema:
|
|
218
|
+
type: string
|
|
219
|
+
requestBody:
|
|
220
|
+
content:
|
|
221
|
+
application/json:
|
|
222
|
+
schema:
|
|
223
|
+
$ref: '#/components/schemas/CreateScanJobOptions'
|
|
224
|
+
example: ''
|
|
225
|
+
responses:
|
|
226
|
+
'201':
|
|
227
|
+
description: Successful operation
|
|
228
|
+
content:
|
|
229
|
+
application/json:
|
|
230
|
+
schema:
|
|
231
|
+
$ref: '#/components/schemas/ScannerJob'
|
|
232
|
+
headers: {}
|
|
233
|
+
'400':
|
|
234
|
+
description: Bad request. e.g. parameter is invalid.
|
|
235
|
+
content:
|
|
236
|
+
application/json:
|
|
237
|
+
schema: *ref_0
|
|
238
|
+
example:
|
|
239
|
+
code: -2113
|
|
240
|
+
message: The parameter is not valid.
|
|
241
|
+
statusCode: 400
|
|
242
|
+
headers: {}
|
|
243
|
+
'403':
|
|
244
|
+
description: The license is invalid.
|
|
245
|
+
content:
|
|
246
|
+
application/json:
|
|
247
|
+
schema: *ref_0
|
|
248
|
+
example:
|
|
249
|
+
code: -2800
|
|
250
|
+
message: >-
|
|
251
|
+
The current product key is empty or invalid. Please contact
|
|
252
|
+
the site administrator.
|
|
253
|
+
statusCode: 403
|
|
254
|
+
headers: {}
|
|
255
|
+
'405':
|
|
256
|
+
description: Method not allowed
|
|
257
|
+
content:
|
|
258
|
+
application/json:
|
|
259
|
+
schema: *ref_0
|
|
260
|
+
example:
|
|
261
|
+
code: -2112
|
|
262
|
+
message: This endpoint only supports POST.
|
|
263
|
+
statusCode: 405
|
|
264
|
+
headers: {}
|
|
265
|
+
'423':
|
|
266
|
+
description: The scanner is currently in use.
|
|
267
|
+
content:
|
|
268
|
+
application/json:
|
|
269
|
+
schema: *ref_0
|
|
270
|
+
example:
|
|
271
|
+
code: -1004
|
|
272
|
+
message: >-
|
|
273
|
+
The source is connected to the maximum supported number of
|
|
274
|
+
applications.
|
|
275
|
+
statusCode: 423
|
|
276
|
+
headers: {}
|
|
277
|
+
security: []
|
|
278
|
+
/device/scanners/jobs/{jobuid}:
|
|
279
|
+
get:
|
|
280
|
+
summary: Retrieve the scan job status.
|
|
281
|
+
deprecated: false
|
|
282
|
+
description: |
|
|
283
|
+
You can get the job status.
|
|
284
|
+
operationId: getScanJobStatus
|
|
285
|
+
tags:
|
|
286
|
+
- Scanner Control
|
|
287
|
+
parameters:
|
|
288
|
+
- name: jobuid
|
|
289
|
+
in: path
|
|
290
|
+
description: ''
|
|
291
|
+
required: true
|
|
292
|
+
example: ''
|
|
293
|
+
schema:
|
|
294
|
+
type: string
|
|
295
|
+
responses:
|
|
296
|
+
'200':
|
|
297
|
+
description: Successful operation
|
|
298
|
+
content:
|
|
299
|
+
application/json:
|
|
300
|
+
schema:
|
|
301
|
+
type: object
|
|
302
|
+
required:
|
|
303
|
+
- status
|
|
304
|
+
- code
|
|
305
|
+
- message
|
|
306
|
+
properties:
|
|
307
|
+
status:
|
|
308
|
+
type: string
|
|
309
|
+
enum:
|
|
310
|
+
- pending
|
|
311
|
+
- running
|
|
312
|
+
- completed
|
|
313
|
+
- faulted
|
|
314
|
+
- canceled
|
|
315
|
+
description: scanner job status
|
|
316
|
+
code:
|
|
317
|
+
type: number
|
|
318
|
+
description: error code
|
|
319
|
+
default: '0'
|
|
320
|
+
message:
|
|
321
|
+
type: string
|
|
322
|
+
description: error message
|
|
323
|
+
default: Successful
|
|
324
|
+
description: Scanner Job Information
|
|
325
|
+
headers: {}
|
|
326
|
+
'404':
|
|
327
|
+
description: Error resonpse
|
|
328
|
+
content:
|
|
329
|
+
application/json:
|
|
330
|
+
schema: *ref_0
|
|
331
|
+
example:
|
|
332
|
+
code: -1034
|
|
333
|
+
message: This provided job UID is invalid.
|
|
334
|
+
statusCode: 404
|
|
335
|
+
headers: {}
|
|
336
|
+
'405':
|
|
337
|
+
description: Method not allowed
|
|
338
|
+
content:
|
|
339
|
+
application/json:
|
|
340
|
+
schema: *ref_0
|
|
341
|
+
example:
|
|
342
|
+
code: -2112
|
|
343
|
+
message: This endpoint only supports GET, PATCH and DELETE.
|
|
344
|
+
statusCode: 405
|
|
345
|
+
headers: {}
|
|
346
|
+
'410':
|
|
347
|
+
description: >-
|
|
348
|
+
The job was deleted. If the service restarted and all the jobs
|
|
349
|
+
were lost, it will return 404.
|
|
350
|
+
content:
|
|
351
|
+
application/json:
|
|
352
|
+
schema: *ref_0
|
|
353
|
+
example:
|
|
354
|
+
code: -1034
|
|
355
|
+
message: Invalid Value.
|
|
356
|
+
statusCode: 410
|
|
357
|
+
headers: {}
|
|
358
|
+
security: []
|
|
359
|
+
patch:
|
|
360
|
+
summary: Update the scan job status.
|
|
361
|
+
deprecated: false
|
|
362
|
+
description: >
|
|
363
|
+
When the job status is pending, you can update the status of the job.
|
|
364
|
+
Otherwise, it will be ignored.
|
|
365
|
+
operationId: updateScanJob
|
|
366
|
+
tags:
|
|
367
|
+
- Scanner Control
|
|
368
|
+
parameters:
|
|
369
|
+
- name: jobuid
|
|
370
|
+
in: path
|
|
371
|
+
description: ''
|
|
372
|
+
required: true
|
|
373
|
+
example: ''
|
|
374
|
+
schema:
|
|
375
|
+
type: string
|
|
376
|
+
requestBody:
|
|
377
|
+
content:
|
|
378
|
+
application/json:
|
|
379
|
+
schema:
|
|
380
|
+
type: object
|
|
381
|
+
properties:
|
|
382
|
+
status:
|
|
383
|
+
type: string
|
|
384
|
+
default: running
|
|
385
|
+
enum:
|
|
386
|
+
- running
|
|
387
|
+
- canceled
|
|
388
|
+
description: >
|
|
389
|
+
Update the job status. If the job is running, it only accepts
|
|
390
|
+
Canceled to cancel the job. If the job is pending, it only accepts
|
|
391
|
+
Running to start the job.
|
|
392
|
+
required:
|
|
393
|
+
- status
|
|
394
|
+
example: ''
|
|
395
|
+
responses:
|
|
396
|
+
'200':
|
|
397
|
+
description: Successful operation
|
|
398
|
+
content:
|
|
399
|
+
application/json:
|
|
400
|
+
schema:
|
|
401
|
+
type: object
|
|
402
|
+
properties:
|
|
403
|
+
status:
|
|
404
|
+
type: string
|
|
405
|
+
enum:
|
|
406
|
+
- running
|
|
407
|
+
- canceled
|
|
408
|
+
default: running
|
|
409
|
+
description: scanner job status.
|
|
410
|
+
required:
|
|
411
|
+
- status
|
|
412
|
+
headers: {}
|
|
413
|
+
'400':
|
|
414
|
+
description: Error resonpse
|
|
415
|
+
content:
|
|
416
|
+
application/json:
|
|
417
|
+
schema: *ref_0
|
|
418
|
+
example:
|
|
419
|
+
code: -2113
|
|
420
|
+
message: The parameter is not valid.
|
|
421
|
+
statusCode: 400
|
|
422
|
+
headers: {}
|
|
423
|
+
'404':
|
|
424
|
+
description: ''
|
|
425
|
+
content:
|
|
426
|
+
application/json:
|
|
427
|
+
schema: *ref_0
|
|
428
|
+
example:
|
|
429
|
+
code: -1034
|
|
430
|
+
message: This provided job UID is invalid.
|
|
431
|
+
statusCode: 404
|
|
432
|
+
headers: {}
|
|
433
|
+
'405':
|
|
434
|
+
description: Method not allowed
|
|
435
|
+
content:
|
|
436
|
+
application/json:
|
|
437
|
+
schema: *ref_0
|
|
438
|
+
example:
|
|
439
|
+
code: -2112
|
|
440
|
+
message: This endpoint only supports GET, PATCH and DELETE.
|
|
441
|
+
statusCode: 405
|
|
442
|
+
headers: {}
|
|
443
|
+
'409':
|
|
444
|
+
description: >-
|
|
445
|
+
When you try to cancel a not pending or running job, update a not
|
|
446
|
+
pending job to running.
|
|
447
|
+
content:
|
|
448
|
+
application/json:
|
|
449
|
+
schema: *ref_0
|
|
450
|
+
example:
|
|
451
|
+
code: -1011
|
|
452
|
+
message: Operation out of expected sequence.
|
|
453
|
+
statusCode: 409
|
|
454
|
+
headers: {}
|
|
455
|
+
'410':
|
|
456
|
+
description: The job was deleted.
|
|
457
|
+
content:
|
|
458
|
+
application/json:
|
|
459
|
+
schema: *ref_0
|
|
460
|
+
example:
|
|
461
|
+
code: -1034
|
|
462
|
+
message: Invalid Value.
|
|
463
|
+
statusCode: 410
|
|
464
|
+
headers: {}
|
|
465
|
+
security: []
|
|
466
|
+
delete:
|
|
467
|
+
summary: Delete the scan job
|
|
468
|
+
deprecated: false
|
|
469
|
+
description: >
|
|
470
|
+
If the job is running, the job will be canceled first, and then be
|
|
471
|
+
deleted, including all scanned documents.
|
|
472
|
+
operationId: deleteScanJob
|
|
473
|
+
tags:
|
|
474
|
+
- Scanner Control
|
|
475
|
+
parameters:
|
|
476
|
+
- name: jobuid
|
|
477
|
+
in: path
|
|
478
|
+
description: ''
|
|
479
|
+
required: true
|
|
480
|
+
example: ''
|
|
481
|
+
schema:
|
|
482
|
+
type: string
|
|
483
|
+
responses:
|
|
484
|
+
'204':
|
|
485
|
+
description: Successful operation
|
|
486
|
+
headers: {}
|
|
487
|
+
'404':
|
|
488
|
+
description: Error resonpse
|
|
489
|
+
content:
|
|
490
|
+
application/json:
|
|
491
|
+
schema: *ref_0
|
|
492
|
+
example:
|
|
493
|
+
code: -1034
|
|
494
|
+
message: This provided job UID is invalid.
|
|
495
|
+
statusCode: 404
|
|
496
|
+
headers: {}
|
|
497
|
+
'405':
|
|
498
|
+
description: Method not allowed
|
|
499
|
+
content:
|
|
500
|
+
application/json:
|
|
501
|
+
schema: *ref_0
|
|
502
|
+
example:
|
|
503
|
+
code: -2112
|
|
504
|
+
message: This endpoint only supports GET, PATCH and DELETE.
|
|
505
|
+
statusCode: 405
|
|
506
|
+
headers: {}
|
|
507
|
+
'410':
|
|
508
|
+
description: The job was deleted.
|
|
509
|
+
content:
|
|
510
|
+
application/json:
|
|
511
|
+
schema: *ref_0
|
|
512
|
+
example:
|
|
513
|
+
code: -1034
|
|
514
|
+
message: Invalid Value.
|
|
515
|
+
statusCode: 410
|
|
516
|
+
headers: {}
|
|
517
|
+
security: []
|
|
518
|
+
/device/scanners/jobs/{jobuid}/scanner/capabilities:
|
|
519
|
+
get:
|
|
520
|
+
summary: Retrieve the capabilities of the scanner specified in the scan job.
|
|
521
|
+
deprecated: false
|
|
522
|
+
description: >
|
|
523
|
+
You can get the capabilities of scanner specified in the job, but it is only valid
|
|
524
|
+
when the job is pending.
|
|
525
|
+
operationId: getCurrentScannerCapabilities
|
|
526
|
+
tags:
|
|
527
|
+
- Scanner Control
|
|
528
|
+
parameters:
|
|
529
|
+
- name: jobuid
|
|
530
|
+
in: path
|
|
531
|
+
description: ''
|
|
532
|
+
required: true
|
|
533
|
+
example: ''
|
|
534
|
+
schema:
|
|
535
|
+
type: string
|
|
536
|
+
- name: caps
|
|
537
|
+
in: query
|
|
538
|
+
description: ''
|
|
539
|
+
required: false
|
|
540
|
+
schema:
|
|
541
|
+
type: string
|
|
542
|
+
description: >
|
|
543
|
+
capability id. multiple values seperated by commas. e.g.
|
|
544
|
+
caps=5,2,1. If no pages specified, return all capabilities.
|
|
545
|
+
externalDocs:
|
|
546
|
+
url: >-
|
|
547
|
+
https://www.dynamsoft.com/web-twain/docs/info/api/Dynamsoft_Enum.html#dynamsoftDWTenumDWT_cap
|
|
548
|
+
responses:
|
|
549
|
+
'200':
|
|
550
|
+
description: Successful operation
|
|
551
|
+
content:
|
|
552
|
+
application/json:
|
|
553
|
+
schema:
|
|
554
|
+
type: array
|
|
555
|
+
externalDocs:
|
|
556
|
+
url: >-
|
|
557
|
+
https://www.dynamsoft.com/web-twain/docs/info/api/Interfaces.html#capabilitydetails
|
|
558
|
+
properties: {}
|
|
559
|
+
items:
|
|
560
|
+
type: object
|
|
561
|
+
properties: {}
|
|
562
|
+
headers: {}
|
|
563
|
+
'400':
|
|
564
|
+
description: Error resonpse
|
|
565
|
+
content:
|
|
566
|
+
application/json:
|
|
567
|
+
schema: *ref_0
|
|
568
|
+
example:
|
|
569
|
+
code: -2113
|
|
570
|
+
message: The parameter is not valid.
|
|
571
|
+
statusCode: 400
|
|
572
|
+
headers: {}
|
|
573
|
+
'404':
|
|
574
|
+
description: ''
|
|
575
|
+
content:
|
|
576
|
+
application/json:
|
|
577
|
+
schema: *ref_0
|
|
578
|
+
example:
|
|
579
|
+
code: -1034
|
|
580
|
+
message: This provided job UID is invalid.
|
|
581
|
+
statusCode: 404
|
|
582
|
+
headers: {}
|
|
583
|
+
'405':
|
|
584
|
+
description: Method not allowed
|
|
585
|
+
content:
|
|
586
|
+
application/json:
|
|
587
|
+
schema: *ref_0
|
|
588
|
+
example:
|
|
589
|
+
code: -2112
|
|
590
|
+
message: This endpoint only supports GET.
|
|
591
|
+
statusCode: 405
|
|
592
|
+
headers: {}
|
|
593
|
+
'409':
|
|
594
|
+
description: Support only when the scan job is pending.
|
|
595
|
+
content:
|
|
596
|
+
application/json:
|
|
597
|
+
schema: *ref_0
|
|
598
|
+
example:
|
|
599
|
+
code: -1011
|
|
600
|
+
message: Operation out of expected sequence.
|
|
601
|
+
statusCode: 409
|
|
602
|
+
headers: {}
|
|
603
|
+
'410':
|
|
604
|
+
description: The job was deleted.
|
|
605
|
+
content:
|
|
606
|
+
application/json:
|
|
607
|
+
schema: *ref_0
|
|
608
|
+
example:
|
|
609
|
+
code: -1034
|
|
610
|
+
message: Invalid Value.
|
|
611
|
+
statusCode: 410
|
|
612
|
+
headers: {}
|
|
613
|
+
security: []
|
|
614
|
+
/device/scanners/jobs/{jobuid}/scanner/settings:
|
|
615
|
+
get:
|
|
616
|
+
summary: Retrieve the settings of the scanner specified in the scan job.
|
|
617
|
+
deprecated: false
|
|
618
|
+
description: >
|
|
619
|
+
You can get the scanner settings. It only supports TWAIN scanners, and
|
|
620
|
+
it is only valid when the job is pending. We will call EnableSourceUI to get
|
|
621
|
+
the settings.
|
|
622
|
+
operationId: getCurrentScannerSettings
|
|
623
|
+
tags:
|
|
624
|
+
- Scanner Control
|
|
625
|
+
parameters:
|
|
626
|
+
- name: jobuid
|
|
627
|
+
in: path
|
|
628
|
+
description: ''
|
|
629
|
+
required: true
|
|
630
|
+
example: ''
|
|
631
|
+
schema:
|
|
632
|
+
type: string
|
|
633
|
+
- name: showui
|
|
634
|
+
in: query
|
|
635
|
+
description: ''
|
|
636
|
+
required: false
|
|
637
|
+
schema:
|
|
638
|
+
type: boolean
|
|
639
|
+
default: true
|
|
640
|
+
description: >
|
|
641
|
+
If true, will show the UI for the user to set the scanner settings. If
|
|
642
|
+
false, will not show the UI.
|
|
643
|
+
responses:
|
|
644
|
+
'200':
|
|
645
|
+
description: Successful operation
|
|
646
|
+
content:
|
|
647
|
+
application/json:
|
|
648
|
+
schema:
|
|
649
|
+
type: object
|
|
650
|
+
properties:
|
|
651
|
+
settings:
|
|
652
|
+
type: string
|
|
653
|
+
description: base64 encoded
|
|
654
|
+
example:
|
|
655
|
+
settings: >-
|
|
656
|
+
Rfj6pIMTNkCu3BfDloGItBAAAAACEAAABgAFAAEAAAAQAAAAExAAAAYABQAAAAAAEAAAAAcQAAAGAAUAAQAAABAAAAArEQAABAAFABgAAAAQAAAAHBEAAAQABQAAAAAAEAAAAAABAAAEAAUAAAAAABwAAAAUEQAACAAFAPgqAAAAAAAANCEAAAAAAAAQAAAADBEAAAQABQACAAAAEAAAAB8RAAAEAAUAAAAAABAAAAABAQAABAAFAAIAAAAQAAAAIBEAAAQABQAAAAAAEAAAACIRAAAEAAUAAwAAABAAAAAQEQAABAAFAAAAAAAQAAAAAgEAAAQABQAAAAAAEAAAABgRAAAHAAUAAABIQxAAAAAZEQAABwAFAAAASEMQAAAAIxEAAAcABQAAAABDEAAAAAMRAAAHAAUAAAAAABAAAAABEQAABwAFAAAAAAAQAAAACBEAAAcABQAAAIA/EAAAAAGAAAAGAAUAAAAAAA==
|
|
657
|
+
headers: {}
|
|
658
|
+
'400':
|
|
659
|
+
description: Error resonpse
|
|
660
|
+
content:
|
|
661
|
+
application/json:
|
|
662
|
+
schema: *ref_0
|
|
663
|
+
example:
|
|
664
|
+
code: -2113
|
|
665
|
+
message: The parameter is not valid.
|
|
666
|
+
statusCode: 400
|
|
667
|
+
headers: {}
|
|
668
|
+
'404':
|
|
669
|
+
description: ''
|
|
670
|
+
content:
|
|
671
|
+
application/json:
|
|
672
|
+
schema: *ref_0
|
|
673
|
+
example:
|
|
674
|
+
code: -1034
|
|
675
|
+
message: This provided job UID is invalid.
|
|
676
|
+
statusCode: 404
|
|
677
|
+
headers: {}
|
|
678
|
+
'405':
|
|
679
|
+
description: Method not allowed
|
|
680
|
+
content:
|
|
681
|
+
application/json:
|
|
682
|
+
schema: *ref_0
|
|
683
|
+
example:
|
|
684
|
+
code: -2112
|
|
685
|
+
message: This endpoint only supports GET.
|
|
686
|
+
statusCode: 405
|
|
687
|
+
headers: {}
|
|
688
|
+
'409':
|
|
689
|
+
description: The job is not in pending.
|
|
690
|
+
content:
|
|
691
|
+
application/json:
|
|
692
|
+
schema: *ref_0
|
|
693
|
+
example:
|
|
694
|
+
code: -1011
|
|
695
|
+
message: Operation out of expected sequence.
|
|
696
|
+
statusCode: 409
|
|
697
|
+
headers: {}
|
|
698
|
+
'410':
|
|
699
|
+
description: The job was deleted.
|
|
700
|
+
content:
|
|
701
|
+
application/json:
|
|
702
|
+
schema: *ref_0
|
|
703
|
+
example:
|
|
704
|
+
code: -1034
|
|
705
|
+
message: Invalid Value.
|
|
706
|
+
statusCode: 410
|
|
707
|
+
headers: {}
|
|
708
|
+
security: []
|
|
709
|
+
/device/scanners/jobs/{jobuid}/next-page-info:
|
|
710
|
+
get:
|
|
711
|
+
summary: Get the next page information for a specific job.
|
|
712
|
+
deprecated: false
|
|
713
|
+
description: >
|
|
714
|
+
Get the next scanned page info. If the scanned page is not ready, it will not
|
|
715
|
+
return until the page is ready. If the response code is 200, we can try to get
|
|
716
|
+
the next until the reponse code is 204.
|
|
717
|
+
operationId: getNextScannedPageInfo
|
|
718
|
+
tags:
|
|
719
|
+
- Scanner Control
|
|
720
|
+
parameters:
|
|
721
|
+
- name: jobuid
|
|
722
|
+
in: path
|
|
723
|
+
description: ''
|
|
724
|
+
required: true
|
|
725
|
+
example: ''
|
|
726
|
+
schema:
|
|
727
|
+
type: string
|
|
728
|
+
responses:
|
|
729
|
+
'200':
|
|
730
|
+
description: >-
|
|
731
|
+
Successful operation. We will also return the image url; if scan to
|
|
732
|
+
a document, also return document uid and page uid.
|
|
733
|
+
content:
|
|
734
|
+
application/json:
|
|
735
|
+
schema:
|
|
736
|
+
type: array
|
|
737
|
+
items:
|
|
738
|
+
$ref: '#/components/schemas/ScanDocumentInfo'
|
|
739
|
+
headers: {}
|
|
740
|
+
'204':
|
|
741
|
+
description: No more pages. scan done.
|
|
742
|
+
headers: {}
|
|
743
|
+
'404':
|
|
744
|
+
description: ''
|
|
745
|
+
content:
|
|
746
|
+
application/json:
|
|
747
|
+
schema: *ref_0
|
|
748
|
+
example:
|
|
749
|
+
code: -1034
|
|
750
|
+
message: This provided job UID is invalid.
|
|
751
|
+
statusCode: 404
|
|
752
|
+
headers: {}
|
|
753
|
+
'405':
|
|
754
|
+
description: Method not allowed
|
|
755
|
+
content:
|
|
756
|
+
application/json:
|
|
757
|
+
schema: *ref_0
|
|
758
|
+
example:
|
|
759
|
+
code: -2112
|
|
760
|
+
message: This endpoint only supports GET.
|
|
761
|
+
statusCode: 405
|
|
762
|
+
headers: {}
|
|
763
|
+
'410':
|
|
764
|
+
description: The job was deleted.
|
|
765
|
+
content:
|
|
766
|
+
application/json:
|
|
767
|
+
schema:
|
|
768
|
+
type: object
|
|
769
|
+
properties: {}
|
|
770
|
+
example:
|
|
771
|
+
code: -1034
|
|
772
|
+
message: Invalid Value.
|
|
773
|
+
statusCode: 410
|
|
774
|
+
headers: {}
|
|
775
|
+
security: []
|
|
776
|
+
/device/scanners/jobs/{jobuid}/next-page:
|
|
777
|
+
get:
|
|
778
|
+
summary: Get the next page for a specific job.
|
|
779
|
+
deprecated: false
|
|
780
|
+
description: >
|
|
781
|
+
Get the next scanned page content. If the scanned page is not ready, it will not
|
|
782
|
+
return until the page is ready. If the response code is 200, we can try to get
|
|
783
|
+
the next until the reponse code is 204.
|
|
784
|
+
operationId: getNextScannedPage
|
|
785
|
+
tags:
|
|
786
|
+
- Scanner Control
|
|
787
|
+
parameters:
|
|
788
|
+
- name: jobuid
|
|
789
|
+
in: path
|
|
790
|
+
description: ''
|
|
791
|
+
required: true
|
|
792
|
+
example: ''
|
|
793
|
+
schema:
|
|
794
|
+
type: string
|
|
795
|
+
- name: type
|
|
796
|
+
in: query
|
|
797
|
+
description: ''
|
|
798
|
+
required: false
|
|
799
|
+
schema:
|
|
800
|
+
type: string
|
|
801
|
+
enum:
|
|
802
|
+
- image/jpeg
|
|
803
|
+
- image/png
|
|
804
|
+
default: image/png
|
|
805
|
+
description: mime type
|
|
806
|
+
responses:
|
|
807
|
+
'200':
|
|
808
|
+
description: Successful operation. return image/png or image/jpeg stream.
|
|
809
|
+
content:
|
|
810
|
+
image/jpeg:
|
|
811
|
+
schema:
|
|
812
|
+
type: object
|
|
813
|
+
properties: {}
|
|
814
|
+
example: "ÿØÿà \x10JFIF \x01\x01\x01 ` ` ÿá ZExif MM * \b \x05\x03\x01 \x05 \x01 J\x03\x03 \x01 \x01 Q\x10 \x01 \x01\x01 Q\x11 \x04 \x01 \x0EÃQ\x12 \x04 \x01 \x0Eà \x01†\_ ±\x8FÿÛ C \x02\x01\x01\x02\x01\x01\x02\x02\x02\x02\x02\x02\x02\x02\x03\x05\x03\x03\x03\x03\x03\x06\x04\x04\x03\x05\a\x06\a\a\a\x06\a\a\b\t\v\t\b\b\r\n\b\a\a\r\n\r\n\r\n\v\f\f\f\f\a\t\x0E\x0F\r\n\f\x0E\v\f\f\fÿÛ C\x01\x02\x02\x02\x03\x03\x03\x06\x03\x03\x06\f\b\a\b\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\fÿÀ \x11\b \x01 \x01\x03\x01\" \x02\x11\x01\x03\x11\x01ÿÄ \x1F \x01\x05\x01\x01\x01\x01\x01\x01 \x01\x02\x03\x04\x05\x06\a\b\t\r\n\vÿÄ µ\x10 \x02\x01\x03\x03\x02\x04\x03\x05\x05\x04\x04 \x01}\x01\x02\x03 \x04\x11\x05\x12!1A\x06\x13Qa\a\"q\x142\x81‘¡\b#B±Á\x15RÑð$3br‚\t\r\n\x16\x17\x18\x19\x1A%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ \x1F\x01 \x03\x01\x01\x01\x01\x01\x01\x01\x01\x01 \x01\x02\x03\x04\x05\x06\a\b\t\r\n\vÿÄ µ\x11 \x02\x01\x02\x04\x04\x03\x04\a\x05\x04\x04 \x01\x02w \x01\x02\x03\x11\x04\x05!1\x06\x12AQ\aaq\x13\"2\x81\b\x14B‘¡±Á\t#3Rð\x15brÑ\r\n\x16$4á%ñ\x17\x18\x19\x1A&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÚ \f\x03\x01 \x02\x11\x03\x11 ? ýü¢Š(\x03ÿÙ"
|
|
815
|
+
headers: {}
|
|
816
|
+
'204':
|
|
817
|
+
description: No more pages. scan done.
|
|
818
|
+
headers: {}
|
|
819
|
+
'400':
|
|
820
|
+
description: Error resonpse
|
|
821
|
+
content:
|
|
822
|
+
application/json:
|
|
823
|
+
schema: *ref_0
|
|
824
|
+
example:
|
|
825
|
+
code: -2113
|
|
826
|
+
message: The parameter is not valid.
|
|
827
|
+
statusCode: 400
|
|
828
|
+
headers: {}
|
|
829
|
+
'404':
|
|
830
|
+
description: ''
|
|
831
|
+
content:
|
|
832
|
+
application/json:
|
|
833
|
+
schema: *ref_0
|
|
834
|
+
example:
|
|
835
|
+
code: -1034
|
|
836
|
+
message: This provided job UID is invalid.
|
|
837
|
+
statusCode: 404
|
|
838
|
+
headers: {}
|
|
839
|
+
'405':
|
|
840
|
+
description: Method not allowed
|
|
841
|
+
content:
|
|
842
|
+
application/json:
|
|
843
|
+
schema: *ref_0
|
|
844
|
+
example:
|
|
845
|
+
code: -2112
|
|
846
|
+
message: This endpoint only supports GET.
|
|
847
|
+
statusCode: 405
|
|
848
|
+
headers: {}
|
|
849
|
+
'410':
|
|
850
|
+
description: The job was deleted.
|
|
851
|
+
content:
|
|
852
|
+
application/json:
|
|
853
|
+
schema: *ref_0
|
|
854
|
+
example:
|
|
855
|
+
code: -1034
|
|
856
|
+
message: Invalid Value.
|
|
857
|
+
statusCode: 410
|
|
858
|
+
headers: {}
|
|
859
|
+
x-200-2:
|
|
860
|
+
description: ''
|
|
861
|
+
content:
|
|
862
|
+
image/png:
|
|
863
|
+
schema:
|
|
864
|
+
type: object
|
|
865
|
+
properties: {}
|
|
866
|
+
example: "‰PNG\r\n\x1A\r\n \r\nIHDR \x01 \x01\b\x02 \x90wSÞ \x01sRGB ®Î\x1Cé \x04gAMA ±\x8F\vüa\x05 \tpHYs \x0Eà \x0EÃ\x01Ço¨d \fIDAT\x18Wcøÿÿ? \x05þ\x02þ§5\x81„ IEND®B`‚"
|
|
867
|
+
headers: {}
|
|
868
|
+
security: []
|
|
869
|
+
/storage/documents:
|
|
870
|
+
post:
|
|
871
|
+
summary: Create a new document.
|
|
872
|
+
deprecated: false
|
|
873
|
+
description: >-
|
|
874
|
+
The document will be stored in the Dynamic Web TWAIN Service working
|
|
875
|
+
folder and all the contents will be encrypted.
|
|
876
|
+
operationId: createDocument
|
|
877
|
+
tags:
|
|
878
|
+
- Document Management
|
|
879
|
+
parameters: []
|
|
880
|
+
requestBody:
|
|
881
|
+
content:
|
|
882
|
+
application/json:
|
|
883
|
+
schema:
|
|
884
|
+
$ref: '#/components/schemas/CreateDocumentOptions'
|
|
885
|
+
description: password for the document
|
|
886
|
+
example: ''
|
|
887
|
+
responses:
|
|
888
|
+
'201':
|
|
889
|
+
description: Successful operation
|
|
890
|
+
content:
|
|
891
|
+
application/json:
|
|
892
|
+
schema: &ref_1
|
|
893
|
+
description: document info
|
|
894
|
+
$ref: '#/components/schemas/DocumentInfo'
|
|
895
|
+
example:
|
|
896
|
+
uid: 190807444d76
|
|
897
|
+
pages: []
|
|
898
|
+
headers: {}
|
|
899
|
+
'400':
|
|
900
|
+
description: Error resonpse
|
|
901
|
+
content:
|
|
902
|
+
application/json:
|
|
903
|
+
schema: *ref_0
|
|
904
|
+
example:
|
|
905
|
+
code: -2113
|
|
906
|
+
message: The parameter is not valid.
|
|
907
|
+
statusCode: 400
|
|
908
|
+
headers: {}
|
|
909
|
+
'405':
|
|
910
|
+
description: Method not allowed
|
|
911
|
+
content:
|
|
912
|
+
application/json:
|
|
913
|
+
schema: *ref_0
|
|
914
|
+
example:
|
|
915
|
+
code: -2112
|
|
916
|
+
message: This endpoint only supports POST.
|
|
917
|
+
statusCode: 405
|
|
918
|
+
headers: {}
|
|
919
|
+
security: []
|
|
920
|
+
/storage/documents/{documentuid}:
|
|
921
|
+
get:
|
|
922
|
+
summary: Retrieve document info
|
|
923
|
+
deprecated: false
|
|
924
|
+
description: Retrieve the document info, including pages info.
|
|
925
|
+
operationId: getDocumentInfo
|
|
926
|
+
tags:
|
|
927
|
+
- Document Management
|
|
928
|
+
parameters:
|
|
929
|
+
- name: documentuid
|
|
930
|
+
in: path
|
|
931
|
+
description: UID of document
|
|
932
|
+
required: true
|
|
933
|
+
example: ''
|
|
934
|
+
schema:
|
|
935
|
+
type: string
|
|
936
|
+
- name: X-DICS-DOC-PASSWORD
|
|
937
|
+
in: header
|
|
938
|
+
description: the password of document in storage
|
|
939
|
+
required: false
|
|
940
|
+
example: ''
|
|
941
|
+
schema:
|
|
942
|
+
type: string
|
|
943
|
+
maxLength: 32
|
|
944
|
+
description: cannot exceed 32 chars.
|
|
945
|
+
responses:
|
|
946
|
+
'200':
|
|
947
|
+
description: Successful operation
|
|
948
|
+
content:
|
|
949
|
+
application/json:
|
|
950
|
+
schema: *ref_1
|
|
951
|
+
example:
|
|
952
|
+
uid: 190807444d76
|
|
953
|
+
pages:
|
|
954
|
+
- uid: 190817548d70
|
|
955
|
+
- uid: '190817648270'
|
|
956
|
+
headers: {}
|
|
957
|
+
'400':
|
|
958
|
+
description: Bad request.
|
|
959
|
+
content:
|
|
960
|
+
application/json:
|
|
961
|
+
schema: *ref_0
|
|
962
|
+
example:
|
|
963
|
+
code: -2113
|
|
964
|
+
message: The parameter is not valid.
|
|
965
|
+
statusCode: 400
|
|
966
|
+
headers: {}
|
|
967
|
+
'403':
|
|
968
|
+
description: ''
|
|
969
|
+
content:
|
|
970
|
+
application/json:
|
|
971
|
+
schema: *ref_0
|
|
972
|
+
example:
|
|
973
|
+
code: -1043
|
|
974
|
+
message: Password invalid.
|
|
975
|
+
statusCode: 403
|
|
976
|
+
headers: {}
|
|
977
|
+
'404':
|
|
978
|
+
description: ''
|
|
979
|
+
content:
|
|
980
|
+
application/json:
|
|
981
|
+
schema: *ref_0
|
|
982
|
+
example:
|
|
983
|
+
code: -1040
|
|
984
|
+
message: The uid does not exist.
|
|
985
|
+
statusCode: 404
|
|
986
|
+
headers: {}
|
|
987
|
+
'405':
|
|
988
|
+
description: Method not allowed
|
|
989
|
+
content:
|
|
990
|
+
application/json:
|
|
991
|
+
schema: *ref_0
|
|
992
|
+
example:
|
|
993
|
+
code: -2112
|
|
994
|
+
message: This endpoint only supports GET and DELETE.
|
|
995
|
+
statusCode: 405
|
|
996
|
+
headers: {}
|
|
997
|
+
security: []
|
|
998
|
+
delete:
|
|
999
|
+
summary: Delete the document.
|
|
1000
|
+
deprecated: false
|
|
1001
|
+
description: All the data will be deleted.
|
|
1002
|
+
operationId: deleteDocument
|
|
1003
|
+
tags:
|
|
1004
|
+
- Document Management
|
|
1005
|
+
parameters:
|
|
1006
|
+
- name: documentuid
|
|
1007
|
+
in: path
|
|
1008
|
+
description: UID of document
|
|
1009
|
+
required: true
|
|
1010
|
+
example: ''
|
|
1011
|
+
schema:
|
|
1012
|
+
type: string
|
|
1013
|
+
- name: X-DICS-DOC-PASSWORD
|
|
1014
|
+
in: header
|
|
1015
|
+
description: the password of document in storage
|
|
1016
|
+
required: false
|
|
1017
|
+
example: ''
|
|
1018
|
+
schema:
|
|
1019
|
+
type: string
|
|
1020
|
+
maxLength: 32
|
|
1021
|
+
description: cannot exceed 32 chars.
|
|
1022
|
+
responses:
|
|
1023
|
+
'204':
|
|
1024
|
+
description: Successful operation
|
|
1025
|
+
headers: {}
|
|
1026
|
+
'400':
|
|
1027
|
+
description: ''
|
|
1028
|
+
content:
|
|
1029
|
+
application/json:
|
|
1030
|
+
schema: *ref_0
|
|
1031
|
+
example:
|
|
1032
|
+
code: -2113
|
|
1033
|
+
message: The parameter is not valid.
|
|
1034
|
+
statusCode: 400
|
|
1035
|
+
headers: {}
|
|
1036
|
+
'403':
|
|
1037
|
+
description: ''
|
|
1038
|
+
content:
|
|
1039
|
+
application/json:
|
|
1040
|
+
schema: *ref_0
|
|
1041
|
+
example:
|
|
1042
|
+
code: -1043
|
|
1043
|
+
message: Password invalid.
|
|
1044
|
+
statusCode: 403
|
|
1045
|
+
headers: {}
|
|
1046
|
+
'404':
|
|
1047
|
+
description: Error resonpse
|
|
1048
|
+
content:
|
|
1049
|
+
application/json:
|
|
1050
|
+
schema: *ref_0
|
|
1051
|
+
example:
|
|
1052
|
+
code: -1040
|
|
1053
|
+
message: The uid does not exist.
|
|
1054
|
+
statusCode: 404
|
|
1055
|
+
headers: {}
|
|
1056
|
+
'405':
|
|
1057
|
+
description: ''
|
|
1058
|
+
content:
|
|
1059
|
+
application/json:
|
|
1060
|
+
schema: *ref_0
|
|
1061
|
+
example:
|
|
1062
|
+
code: -2112
|
|
1063
|
+
message: This endpoint only supports GET and DELETE.
|
|
1064
|
+
statusCode: 405
|
|
1065
|
+
headers: {}
|
|
1066
|
+
security: []
|
|
1067
|
+
/storage/documents/{documentuid}/content:
|
|
1068
|
+
get:
|
|
1069
|
+
summary: Retrieve the document content with specified format.
|
|
1070
|
+
deprecated: false
|
|
1071
|
+
description: >
|
|
1072
|
+
Can specify one or more pages with page index or uid, otherwise, the whole
|
|
1073
|
+
document. Also can specify pdf info, and encryption.
|
|
1074
|
+
operationId: getDocContent
|
|
1075
|
+
tags:
|
|
1076
|
+
- Document Management
|
|
1077
|
+
parameters:
|
|
1078
|
+
- name: documentuid
|
|
1079
|
+
in: path
|
|
1080
|
+
description: UID of document
|
|
1081
|
+
required: true
|
|
1082
|
+
example: ''
|
|
1083
|
+
schema:
|
|
1084
|
+
type: string
|
|
1085
|
+
- name: type
|
|
1086
|
+
in: query
|
|
1087
|
+
description: output mime type
|
|
1088
|
+
required: false
|
|
1089
|
+
schema:
|
|
1090
|
+
type: string
|
|
1091
|
+
enum:
|
|
1092
|
+
- image/jpeg
|
|
1093
|
+
- image/png
|
|
1094
|
+
- image/tiff
|
|
1095
|
+
- application/pdf
|
|
1096
|
+
default: application/pdf
|
|
1097
|
+
description: |
|
|
1098
|
+
Specified the output format.
|
|
1099
|
+
- name: quality
|
|
1100
|
+
in: query
|
|
1101
|
+
description: ''
|
|
1102
|
+
required: false
|
|
1103
|
+
schema:
|
|
1104
|
+
type: integer
|
|
1105
|
+
format: int32
|
|
1106
|
+
minimum: 1
|
|
1107
|
+
maximum: 100
|
|
1108
|
+
default: 80
|
|
1109
|
+
description: >-
|
|
1110
|
+
range is 0 to 100. only valid for jpeg/jpeg2000
|
|
1111
|
+
compression.
|
|
1112
|
+
- name: pages
|
|
1113
|
+
in: query
|
|
1114
|
+
description: ''
|
|
1115
|
+
required: false
|
|
1116
|
+
schema:
|
|
1117
|
+
type: string
|
|
1118
|
+
default: ''
|
|
1119
|
+
description: >
|
|
1120
|
+
page indices or uids. multiple values seperated by commas. e.g.
|
|
1121
|
+
pages=5,2,1. If no pages specified, for image/png, image/jpeg,
|
|
1122
|
+
only return first page; for image/tiff, application/pdf, return
|
|
1123
|
+
all pages.
|
|
1124
|
+
- name: author
|
|
1125
|
+
in: query
|
|
1126
|
+
description: ''
|
|
1127
|
+
required: false
|
|
1128
|
+
schema:
|
|
1129
|
+
type: string
|
|
1130
|
+
default: ''
|
|
1131
|
+
externalDocs:
|
|
1132
|
+
url: >-
|
|
1133
|
+
https://www.dynamsoft.com/web-twain/docs/info//api/interfaces.html#pdfwsettings
|
|
1134
|
+
- name: compression
|
|
1135
|
+
in: query
|
|
1136
|
+
description: >-
|
|
1137
|
+
for tiff, please refer to
|
|
1138
|
+
https://www.dynamsoft.com/web-twain/docs/info/api/Dynamsoft_Enum.html#dynamsoftDWTenumDWT_tiffcompressiontype
|
|
1139
|
+
|
|
1140
|
+
for pdf, please refer to
|
|
1141
|
+
https://www.dynamsoft.com/web-twain/docs/info/api/Dynamsoft_Enum.html#dynamsoftDWTenumDWT_pdfcompressiontype
|
|
1142
|
+
required: false
|
|
1143
|
+
schema:
|
|
1144
|
+
type: integer
|
|
1145
|
+
format: int32
|
|
1146
|
+
default: 0
|
|
1147
|
+
description: auto, BW use JBIG2, GrayScale & Color use Jpeg
|
|
1148
|
+
externalDocs:
|
|
1149
|
+
url: >-
|
|
1150
|
+
https://www.dynamsoft.com/web-twain/docs/info//api/interfaces.html#pdfwsettings
|
|
1151
|
+
- name: pageType
|
|
1152
|
+
in: query
|
|
1153
|
+
description: ''
|
|
1154
|
+
required: false
|
|
1155
|
+
schema:
|
|
1156
|
+
type: integer
|
|
1157
|
+
format: int32
|
|
1158
|
+
default: 0
|
|
1159
|
+
description: page size
|
|
1160
|
+
externalDocs:
|
|
1161
|
+
url: >-
|
|
1162
|
+
https://www.dynamsoft.com/web-twain/docs/info//api/interfaces.html#pdfwsettings
|
|
1163
|
+
- name: creator
|
|
1164
|
+
in: query
|
|
1165
|
+
description: ''
|
|
1166
|
+
required: false
|
|
1167
|
+
schema:
|
|
1168
|
+
type: string
|
|
1169
|
+
default: ''
|
|
1170
|
+
externalDocs:
|
|
1171
|
+
url: >-
|
|
1172
|
+
https://www.dynamsoft.com/web-twain/docs/info//api/interfaces.html#pdfwsettings
|
|
1173
|
+
- name: creationDate
|
|
1174
|
+
in: query
|
|
1175
|
+
description: ''
|
|
1176
|
+
required: false
|
|
1177
|
+
schema:
|
|
1178
|
+
type: string
|
|
1179
|
+
default: ''
|
|
1180
|
+
externalDocs:
|
|
1181
|
+
url: >-
|
|
1182
|
+
https://www.dynamsoft.com/web-twain/docs/info//api/interfaces.html#pdfwsettings
|
|
1183
|
+
- name: keyWords
|
|
1184
|
+
in: query
|
|
1185
|
+
description: ''
|
|
1186
|
+
required: false
|
|
1187
|
+
schema:
|
|
1188
|
+
type: string
|
|
1189
|
+
default: ''
|
|
1190
|
+
externalDocs:
|
|
1191
|
+
url: >-
|
|
1192
|
+
https://www.dynamsoft.com/web-twain/docs/info//api/interfaces.html#pdfwsettings
|
|
1193
|
+
- name: modifiedDate
|
|
1194
|
+
in: query
|
|
1195
|
+
description: ''
|
|
1196
|
+
required: false
|
|
1197
|
+
schema:
|
|
1198
|
+
type: string
|
|
1199
|
+
default: ''
|
|
1200
|
+
externalDocs:
|
|
1201
|
+
url: >-
|
|
1202
|
+
https://www.dynamsoft.com/web-twain/docs/info//api/interfaces.html#pdfwsettings
|
|
1203
|
+
- name: producer
|
|
1204
|
+
in: query
|
|
1205
|
+
description: ''
|
|
1206
|
+
required: false
|
|
1207
|
+
schema:
|
|
1208
|
+
type: string
|
|
1209
|
+
default: ''
|
|
1210
|
+
externalDocs:
|
|
1211
|
+
url: >-
|
|
1212
|
+
https://www.dynamsoft.com/web-twain/docs/info//api/interfaces.html#pdfwsettings
|
|
1213
|
+
- name: subject
|
|
1214
|
+
in: query
|
|
1215
|
+
description: ''
|
|
1216
|
+
required: false
|
|
1217
|
+
schema:
|
|
1218
|
+
type: string
|
|
1219
|
+
default: ''
|
|
1220
|
+
externalDocs:
|
|
1221
|
+
url: >-
|
|
1222
|
+
https://www.dynamsoft.com/web-twain/docs/info//api/interfaces.html#pdfwsettings
|
|
1223
|
+
- name: title
|
|
1224
|
+
in: query
|
|
1225
|
+
description: ''
|
|
1226
|
+
required: false
|
|
1227
|
+
schema:
|
|
1228
|
+
type: string
|
|
1229
|
+
default: ''
|
|
1230
|
+
externalDocs:
|
|
1231
|
+
url: >-
|
|
1232
|
+
https://www.dynamsoft.com/web-twain/docs/info//api/interfaces.html#pdfwsettings
|
|
1233
|
+
- name: version
|
|
1234
|
+
in: query
|
|
1235
|
+
description: ''
|
|
1236
|
+
required: false
|
|
1237
|
+
schema:
|
|
1238
|
+
type: string
|
|
1239
|
+
default: '1.5'
|
|
1240
|
+
externalDocs:
|
|
1241
|
+
url: >-
|
|
1242
|
+
https://www.dynamsoft.com/web-twain/docs/info//api/interfaces.html#pdfwsettings
|
|
1243
|
+
- name: password
|
|
1244
|
+
in: query
|
|
1245
|
+
description: ''
|
|
1246
|
+
required: false
|
|
1247
|
+
schema:
|
|
1248
|
+
type: string
|
|
1249
|
+
maxLength: 32
|
|
1250
|
+
default: ''
|
|
1251
|
+
description: password to encrypt pdf.
|
|
1252
|
+
externalDocs:
|
|
1253
|
+
url: >-
|
|
1254
|
+
https://www.dynamsoft.com/web-twain/docs/info//api/interfaces.html#pdfwsettings
|
|
1255
|
+
- name: X-DICS-DOC-PASSWORD
|
|
1256
|
+
in: header
|
|
1257
|
+
description: the password of document in storage
|
|
1258
|
+
required: false
|
|
1259
|
+
example: ''
|
|
1260
|
+
schema:
|
|
1261
|
+
type: string
|
|
1262
|
+
maxLength: 32
|
|
1263
|
+
description: cannot exceed 32 chars.
|
|
1264
|
+
responses:
|
|
1265
|
+
'200':
|
|
1266
|
+
description: Successful operation
|
|
1267
|
+
content:
|
|
1268
|
+
image/jpeg:
|
|
1269
|
+
schema:
|
|
1270
|
+
type: object
|
|
1271
|
+
properties: {}
|
|
1272
|
+
example: "ÿØÿà \x10JFIF \x01\x01\x01 ` ` ÿá ZExif MM * \b \x05\x03\x01 \x05 \x01 J\x03\x03 \x01 \x01 Q\x10 \x01 \x01\x01 Q\x11 \x04 \x01 \x0EÃQ\x12 \x04 \x01 \x0Eà \x01† ±\x8FÿÛ C \x02\x01\x01\x02\x01\x01\x02\x02\x02\x02\x02\x02\x02\x02\x03\x05\x03\x03\x03\x03\x03\x06\x04\x04\x03\x05\a\x06\a\a\a\x06\a\a\b\t\v\t\b\b\r\n\b\a\a\r\n\r\n\r\n\v\f\f\f\f\a\t\x0E\x0F\r\n\f\x0E\v\f\f\fÿÛ C\x01\x02\x02\x02\x03\x03\x03\x06\x03\x03\x06\f\b\a\b\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\fÿÀ \x11\b \x01 \x01\x03\x01\" \x02\x11\x01\x03\x11\x01ÿÄ \x1F \x01\x05\x01\x01\x01\x01\x01\x01 \x01\x02\x03\x04\x05\x06\a\b\t\r\n\vÿÄ µ\x10 \x02\x01\x03\x03\x02\x04\x03\x05\x05\x04\x04 \x01}\x01\x02\x03 \x04\x11\x05\x12!1A\x06\x13Qa\a\"q\x142\x81‘¡\b#B±Á\x15RÑð$3br‚\t\r\n\x16\x17\x18\x19\x1A%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ \x1F\x01 \x03\x01\x01\x01\x01\x01\x01\x01\x01\x01 \x01\x02\x03\x04\x05\x06\a\b\t\r\n\vÿÄ µ\x11 \x02\x01\x02\x04\x04\x03\x04\a\x05\x04\x04 \x01\x02w \x01\x02\x03\x11\x04\x05!1\x06\x12AQ\aaq\x13\"2\x81\b\x14B‘¡±Á\t#3Rð\x15brÑ\r\n\x16$4á%ñ\x17\x18\x19\x1A&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÚ \f\x03\x01 \x02\x11\x03\x11 ? ýü¢Š(\x03ÿÙ"
|
|
1273
|
+
headers: {}
|
|
1274
|
+
'400':
|
|
1275
|
+
description: ''
|
|
1276
|
+
content:
|
|
1277
|
+
application/json:
|
|
1278
|
+
schema: *ref_0
|
|
1279
|
+
example:
|
|
1280
|
+
code: -2113
|
|
1281
|
+
message: The parameter is not valid.
|
|
1282
|
+
statusCode: 400
|
|
1283
|
+
headers: {}
|
|
1284
|
+
'403':
|
|
1285
|
+
description: ''
|
|
1286
|
+
content:
|
|
1287
|
+
application/json:
|
|
1288
|
+
schema: *ref_0
|
|
1289
|
+
example:
|
|
1290
|
+
code: -1043
|
|
1291
|
+
message: Password invalid.
|
|
1292
|
+
statusCode: 403
|
|
1293
|
+
headers: {}
|
|
1294
|
+
'404':
|
|
1295
|
+
description: ''
|
|
1296
|
+
content:
|
|
1297
|
+
application/json:
|
|
1298
|
+
schema: *ref_0
|
|
1299
|
+
example:
|
|
1300
|
+
code: -1040
|
|
1301
|
+
message: The uid does not exist.
|
|
1302
|
+
statusCode: 404
|
|
1303
|
+
headers: {}
|
|
1304
|
+
'405':
|
|
1305
|
+
description: Method not allowed
|
|
1306
|
+
content:
|
|
1307
|
+
application/json:
|
|
1308
|
+
schema: *ref_0
|
|
1309
|
+
example:
|
|
1310
|
+
code: -2112
|
|
1311
|
+
message: This endpoint only supports GET.
|
|
1312
|
+
statusCode: 405
|
|
1313
|
+
headers: {}
|
|
1314
|
+
x-200-2:
|
|
1315
|
+
description: Error resonpse
|
|
1316
|
+
content:
|
|
1317
|
+
application/pdf:
|
|
1318
|
+
schema: *ref_0
|
|
1319
|
+
example: "%PDF-1.5\r\n%¡³Å×\r\n1 0 obj\r\n<</Pages 2 0 R /Type/Catalog>>\r\nendobj\r\n2 0 obj\r\n<</Count 1/Kids[ 4 0 R ]/Type/Pages>>\r\nendobj\r\n3 0 obj\r\n<<>>\r\nendobj\r\n4 0 obj\r\n<</Contents 7 0 R /CropBox[ 0 -0.25 1 0.75]/MediaBox[ 0 0 0.75 0.75]/Parent 2 0 R /Resources<</ExtGState<</FXE1 5 0 R >>/XObject<</FXX1 6 0 R >>>>/Rotate 0/Type/Page>>\r\nendobj\r\n5 0 obj\r\n<</BM/Normal/CA 1/ca 1>>\r\nendobj\r\n6 0 obj\r\n<</BitsPerComponent 8/ColorSpace/DeviceRGB/Filter/DCTDecode/Height 1/Length 631/Subtype/Image/Type/XObject/Width 1>>stream\r\nÿØÿà \x10JFIF \x01\x01\x01 ` ` ÿÛ C \x06\x04\x05\x06\x05\x04\x06\x06\x05\x06\a\a\x06\b\r\n\x10\r\n\r\n\t\t\r\n\x14\x0E\x0F\f\x10\x17\x14\x18\x18\x17\x14\x16\x16\x1A\x1D%\x1F\x1A\e#\x1C\x16\x16 , #&')*)\x19\x1F-0-(0%()(ÿÛ C\x01\a\a\a\r\n\b\r\n\x13\r\n\r\n\x13(\x1A\x16\x1A((((((((((((((((((((((((((((((((((((((((((((((((((ÿÀ \x11\b \x01 \x01\x03\x01\" \x02\x11\x01\x03\x11\x01ÿÄ \x1F \x01\x05\x01\x01\x01\x01\x01\x01 \x01\x02\x03\x04\x05\x06\a\b\t\r\n\vÿÄ µ\x10 \x02\x01\x03\x03\x02\x04\x03\x05\x05\x04\x04 \x01}\x01\x02\x03 \x04\x11\x05\x12!1A\x06\x13Qa\a\"q\x142\x81‘¡\b#B±Á\x15RÑð$3br‚\t\r\n\x16\x17\x18\x19\x1A%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ \x1F\x01 \x03\x01\x01\x01\x01\x01\x01\x01\x01\x01 \x01\x02\x03\x04\x05\x06\a\b\t\r\n\vÿÄ µ\x11 \x02\x01\x02\x04\x04\x03\x04\a\x05\x04\x04 \x01\x02w \x01\x02\x03\x11\x04\x05!1\x06\x12AQ\aaq\x13\"2\x81\b\x14B‘¡±Á\t#3Rð\x15brÑ\r\n\x16$4á%ñ\x17\x18\x19\x1A&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÚ \f\x03\x01 \x02\x11\x03\x11 ? ú¦Š(\_\x0FÿÙ\r\nendstream\r\nendobj\r\n7 0 obj\r\n<</Filter/FlateDecode/Length 39>>stream\r\nxœ+ä2Ð37U0 A\x18#9—\vÌW(JçÒw‹ˆ0TpÉW\bä\x02 ¹þ\bá\r\nendstream\r\nendobj\r\nxref\r\n0 8\r\n0000000000 65535 f\r\n0000000017 00000 n\r\n0000000066 00000 n\r\n0000000122 00000 n\r\n0000000145 00000 n\r\n0000000331 00000 n\r\n0000000374 00000 n\r\n0000001159 00000 n\r\ntrailer\r\n<<\r\n/Root 1 0 R\r\n/Info 3 0 R\r\n/Size 8\r\n/Tag /Dynamsoft\r\n>>\r\nstartxref\r\n1269\r\n%%EOF\r\n"
|
|
1320
|
+
headers: {}
|
|
1321
|
+
x-200-3:
|
|
1322
|
+
description: ''
|
|
1323
|
+
content:
|
|
1324
|
+
image/png:
|
|
1325
|
+
schema:
|
|
1326
|
+
type: object
|
|
1327
|
+
properties: {}
|
|
1328
|
+
example: "‰PNG\r\n\x1A\r\n \r\nIHDR \x01 \x01\b\x02 \x90wSÞ \x01sRGB ®Î\x1Cé \x04gAMA ±\x8F\vüa\x05 \tpHYs \x0Eà \x0EÃ\x01Ço¨d \fIDAT\x18Wcøÿÿ? \x05þ\x02þ§5\x81„ IEND®B`‚"
|
|
1329
|
+
headers: {}
|
|
1330
|
+
x-200-4:
|
|
1331
|
+
description: ''
|
|
1332
|
+
content:
|
|
1333
|
+
image/tiff:
|
|
1334
|
+
schema:
|
|
1335
|
+
type: object
|
|
1336
|
+
properties: {}
|
|
1337
|
+
example: "II* \x0E €?àP\x10 \x0F þ \x04 \x01 \x01\x04 \x01 \x01 \x01\x01\x04 \x01 \x01 \x02\x01\x03 \x03 È \x03\x01\x03 \x01 \x05 \x06\x01\x03 \x01 \x02 \x11\x01\x04 \x01 \b \x15\x01\x03 \x01 \x03 \x16\x01\x04 \x01 \x01 \x17\x01\x04 \x01 \x05 \x1A\x01\x05 \x01 Î \e\x01\x05 \x01 Ö \x1C\x01\x03 \x01 \x01 (\x01\x03 \x01 \x02 =\x01\x03 \x01 \x02 \b \b \b w\x01 è\x03 w\x01 è\x03 "
|
|
1338
|
+
headers: {}
|
|
1339
|
+
security: []
|
|
1340
|
+
/storage/documents/{documentuid}/pages:
|
|
1341
|
+
post:
|
|
1342
|
+
summary: Insert new page(s) into an existing document.
|
|
1343
|
+
deprecated: false
|
|
1344
|
+
description: >
|
|
1345
|
+
By default, it will append the pages to the end of document. for multiple tiff, we
|
|
1346
|
+
will split it into multiple images. And for multiple pdf, we will also
|
|
1347
|
+
split it into multiple pages and save raw content.
|
|
1348
|
+
operationId: insertDocPage
|
|
1349
|
+
tags:
|
|
1350
|
+
- Document Management
|
|
1351
|
+
parameters:
|
|
1352
|
+
- name: documentuid
|
|
1353
|
+
in: path
|
|
1354
|
+
description: UID of document
|
|
1355
|
+
required: true
|
|
1356
|
+
example: ''
|
|
1357
|
+
schema:
|
|
1358
|
+
type: string
|
|
1359
|
+
- name: X-DICS-DOC-PASSWORD
|
|
1360
|
+
in: header
|
|
1361
|
+
description: the password of document in storage
|
|
1362
|
+
required: false
|
|
1363
|
+
example: ''
|
|
1364
|
+
schema:
|
|
1365
|
+
type: string
|
|
1366
|
+
maxLength: 32
|
|
1367
|
+
description: cannot exceed 32 chars.
|
|
1368
|
+
requestBody:
|
|
1369
|
+
content:
|
|
1370
|
+
application/json:
|
|
1371
|
+
schema:
|
|
1372
|
+
type: object
|
|
1373
|
+
required:
|
|
1374
|
+
- source
|
|
1375
|
+
properties:
|
|
1376
|
+
insertPos:
|
|
1377
|
+
type: number
|
|
1378
|
+
description: >
|
|
1379
|
+
Positive integer. The new page will be inserted before this
|
|
1380
|
+
index. If not set or out of the maximum range, the blank
|
|
1381
|
+
page will be added after the last page.
|
|
1382
|
+
source:
|
|
1383
|
+
oneOf:
|
|
1384
|
+
- type: string
|
|
1385
|
+
examples:
|
|
1386
|
+
- >-
|
|
1387
|
+
https://127.0.0.1:18623/api/device/scanners/jobs/dd40716d-48d1-4d32-89f7-1d53f9665d91/next-page?page=19522d0c5282
|
|
1388
|
+
description: >-
|
|
1389
|
+
Currently only support image url from scan job. eg.
|
|
1390
|
+
"https://127.0.0.1:18623/api/device/scanners/jobs/dd40716d-48d1-4d32-89f7-1d53f9665d91/next-page?page=19522d0c5282"
|
|
1391
|
+
example: ''
|
|
1392
|
+
responses:
|
|
1393
|
+
'200':
|
|
1394
|
+
description: Page inserted successfully
|
|
1395
|
+
content:
|
|
1396
|
+
application/json:
|
|
1397
|
+
schema: *ref_1
|
|
1398
|
+
example:
|
|
1399
|
+
uid: 190807444d76
|
|
1400
|
+
pages:
|
|
1401
|
+
- uid: 190817548d70
|
|
1402
|
+
- uid: 190818458d85
|
|
1403
|
+
headers: {}
|
|
1404
|
+
'400':
|
|
1405
|
+
description: Error resonpse
|
|
1406
|
+
content:
|
|
1407
|
+
application/json:
|
|
1408
|
+
schema: *ref_0
|
|
1409
|
+
example:
|
|
1410
|
+
code: -2113
|
|
1411
|
+
message: The parameter is not valid.
|
|
1412
|
+
statusCode: 400
|
|
1413
|
+
headers: {}
|
|
1414
|
+
'403':
|
|
1415
|
+
description: ''
|
|
1416
|
+
content:
|
|
1417
|
+
application/json:
|
|
1418
|
+
schema: *ref_0
|
|
1419
|
+
example:
|
|
1420
|
+
code: -1043
|
|
1421
|
+
message: Password invalid.
|
|
1422
|
+
statusCode: 403
|
|
1423
|
+
headers: {}
|
|
1424
|
+
'404':
|
|
1425
|
+
description: ''
|
|
1426
|
+
content:
|
|
1427
|
+
application/json:
|
|
1428
|
+
schema: *ref_0
|
|
1429
|
+
example:
|
|
1430
|
+
code: -1040
|
|
1431
|
+
message: The uid does not exist.
|
|
1432
|
+
statusCode: 404
|
|
1433
|
+
headers: {}
|
|
1434
|
+
'405':
|
|
1435
|
+
description: ''
|
|
1436
|
+
content:
|
|
1437
|
+
application/json:
|
|
1438
|
+
schema: *ref_0
|
|
1439
|
+
example:
|
|
1440
|
+
code: -2112
|
|
1441
|
+
message: This endpoint only supports POST.
|
|
1442
|
+
statusCode: 405
|
|
1443
|
+
headers: {}
|
|
1444
|
+
security: []
|
|
1445
|
+
/storage/documents/{documentuid}/pages/{param}:
|
|
1446
|
+
delete:
|
|
1447
|
+
summary: Delete the specified page.
|
|
1448
|
+
deprecated: false
|
|
1449
|
+
description: Delete the page by uid or page number.
|
|
1450
|
+
operationId: deleteDocPage
|
|
1451
|
+
tags:
|
|
1452
|
+
- Document Management
|
|
1453
|
+
parameters:
|
|
1454
|
+
- name: documentuid
|
|
1455
|
+
in: path
|
|
1456
|
+
description: UID of document
|
|
1457
|
+
required: true
|
|
1458
|
+
example: ''
|
|
1459
|
+
schema:
|
|
1460
|
+
type: string
|
|
1461
|
+
- name: param
|
|
1462
|
+
in: path
|
|
1463
|
+
description: 'UID of the page or page index number (0-based). '
|
|
1464
|
+
required: true
|
|
1465
|
+
example: ''
|
|
1466
|
+
schema:
|
|
1467
|
+
type: string
|
|
1468
|
+
- name: X-DICS-DOC-PASSWORD
|
|
1469
|
+
in: header
|
|
1470
|
+
description: the password of document in storage
|
|
1471
|
+
required: false
|
|
1472
|
+
example: ''
|
|
1473
|
+
schema:
|
|
1474
|
+
type: string
|
|
1475
|
+
maxLength: 32
|
|
1476
|
+
description: cannot exceed 32 chars.
|
|
1477
|
+
responses:
|
|
1478
|
+
'204':
|
|
1479
|
+
description: Page removed successfully
|
|
1480
|
+
headers: {}
|
|
1481
|
+
'400':
|
|
1482
|
+
description: Error resonpse
|
|
1483
|
+
content:
|
|
1484
|
+
application/json:
|
|
1485
|
+
schema: *ref_0
|
|
1486
|
+
example:
|
|
1487
|
+
code: -2113
|
|
1488
|
+
message: The parameter is not valid.
|
|
1489
|
+
statusCode: 400
|
|
1490
|
+
headers: {}
|
|
1491
|
+
'403':
|
|
1492
|
+
description: ''
|
|
1493
|
+
content:
|
|
1494
|
+
application/json:
|
|
1495
|
+
schema: *ref_0
|
|
1496
|
+
example:
|
|
1497
|
+
code: -1043
|
|
1498
|
+
message: Password invalid.
|
|
1499
|
+
statusCode: 403
|
|
1500
|
+
headers: {}
|
|
1501
|
+
'404':
|
|
1502
|
+
description: ''
|
|
1503
|
+
content:
|
|
1504
|
+
application/json:
|
|
1505
|
+
schema: *ref_0
|
|
1506
|
+
example:
|
|
1507
|
+
code: -1040
|
|
1508
|
+
message: The provided page UID is invalid.
|
|
1509
|
+
statusCode: 404
|
|
1510
|
+
headers: {}
|
|
1511
|
+
'405':
|
|
1512
|
+
description: ''
|
|
1513
|
+
content:
|
|
1514
|
+
application/json:
|
|
1515
|
+
schema: *ref_0
|
|
1516
|
+
example:
|
|
1517
|
+
code: -2112
|
|
1518
|
+
message: This endpoint only supports DELETE.
|
|
1519
|
+
statusCode: 405
|
|
1520
|
+
headers: {}
|
|
1521
|
+
security: []
|
|
1522
|
+
/process/{operation}:
|
|
1523
|
+
post:
|
|
1524
|
+
summary: Create a new processing for a specified source.
|
|
1525
|
+
deprecated: false
|
|
1526
|
+
description: >
|
|
1527
|
+
Some operations can be implemented by external modules. Currently,
|
|
1528
|
+
check-blank is Windows only.
|
|
1529
|
+
operationId: createDocProcess
|
|
1530
|
+
tags:
|
|
1531
|
+
- Document Processing
|
|
1532
|
+
parameters:
|
|
1533
|
+
- name: operation
|
|
1534
|
+
in: path
|
|
1535
|
+
description: type of processing
|
|
1536
|
+
required: true
|
|
1537
|
+
example: ''
|
|
1538
|
+
schema:
|
|
1539
|
+
type: string
|
|
1540
|
+
description: >
|
|
1541
|
+
currently only process DWT urls, so we cannot pass index,
|
|
1542
|
+
only has one page. read-barcode can accept a barcode reader
|
|
1543
|
+
template settings. and need to pass extra license with header
|
|
1544
|
+
X-DICS-LICENSE-KEY. check-blank can accept null or
|
|
1545
|
+
{minBlockHeight?: number, maxBlockHeight?: number}. rotate can
|
|
1546
|
+
accept {rotation: number, keepSize?: boolean}.
|
|
1547
|
+
calculate-skew-angle can accept null.
|
|
1548
|
+
enum:
|
|
1549
|
+
- check-blank
|
|
1550
|
+
- read-barcode
|
|
1551
|
+
- name: X-DICS-LICENSE-KEY
|
|
1552
|
+
in: header
|
|
1553
|
+
description: the license for image processing
|
|
1554
|
+
required: false
|
|
1555
|
+
example: ''
|
|
1556
|
+
schema:
|
|
1557
|
+
type: string
|
|
1558
|
+
requestBody:
|
|
1559
|
+
content:
|
|
1560
|
+
application/json:
|
|
1561
|
+
schema:
|
|
1562
|
+
description: different processings have different parameters.
|
|
1563
|
+
$ref: '#/components/schemas/CreateProcessOptions'
|
|
1564
|
+
example: ''
|
|
1565
|
+
responses:
|
|
1566
|
+
'200':
|
|
1567
|
+
description: Successful operation
|
|
1568
|
+
content:
|
|
1569
|
+
application/json:
|
|
1570
|
+
schema:
|
|
1571
|
+
type: object
|
|
1572
|
+
properties:
|
|
1573
|
+
result:
|
|
1574
|
+
type: boolean
|
|
1575
|
+
description: is blank image or not
|
|
1576
|
+
required:
|
|
1577
|
+
- result
|
|
1578
|
+
example:
|
|
1579
|
+
result: true
|
|
1580
|
+
headers: {}
|
|
1581
|
+
'400':
|
|
1582
|
+
description: Bad request. e.g. parameter is invalid.
|
|
1583
|
+
content:
|
|
1584
|
+
application/json:
|
|
1585
|
+
schema: *ref_0
|
|
1586
|
+
example:
|
|
1587
|
+
code: -2113
|
|
1588
|
+
message: The parameter is not valid.
|
|
1589
|
+
statusCode: 400
|
|
1590
|
+
headers: {}
|
|
1591
|
+
'403':
|
|
1592
|
+
description: License is invalid.
|
|
1593
|
+
content:
|
|
1594
|
+
application/json:
|
|
1595
|
+
schema: *ref_0
|
|
1596
|
+
example:
|
|
1597
|
+
code: -2800
|
|
1598
|
+
message: >-
|
|
1599
|
+
The current product key is empty or invalid, please contact
|
|
1600
|
+
the site administrator.
|
|
1601
|
+
statusCode: 403
|
|
1602
|
+
headers: {}
|
|
1603
|
+
'405':
|
|
1604
|
+
description: Method not allowed
|
|
1605
|
+
content:
|
|
1606
|
+
application/json:
|
|
1607
|
+
schema: *ref_0
|
|
1608
|
+
example:
|
|
1609
|
+
code: -2112
|
|
1610
|
+
message: This endpoint only supports POST.
|
|
1611
|
+
statusCode: 405
|
|
1612
|
+
headers: {}
|
|
1613
|
+
x-200-2:
|
|
1614
|
+
description: ''
|
|
1615
|
+
content:
|
|
1616
|
+
application/json:
|
|
1617
|
+
schema:
|
|
1618
|
+
type: object
|
|
1619
|
+
properties: {}
|
|
1620
|
+
description: barcode result
|
|
1621
|
+
example:
|
|
1622
|
+
- BarcodeFormat: 2
|
|
1623
|
+
BarcodeFormatString: CODE_128
|
|
1624
|
+
LocalizationResult:
|
|
1625
|
+
ResultPoints:
|
|
1626
|
+
- 723, 274
|
|
1627
|
+
- 1021, 275
|
|
1628
|
+
- 1021, 375
|
|
1629
|
+
- 723, 374
|
|
1630
|
+
accompanyingTextBytes: []
|
|
1631
|
+
angle: 0
|
|
1632
|
+
barcodeFormat: 3147775
|
|
1633
|
+
barcodeFormatString: OneD
|
|
1634
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1635
|
+
barcodeFormat_2: 0
|
|
1636
|
+
confidence: 100
|
|
1637
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
1638
|
+
moduleSize: 2
|
|
1639
|
+
pageNumber: 1
|
|
1640
|
+
regionName: ''
|
|
1641
|
+
resultCoordinateType: 1
|
|
1642
|
+
terminatePhase: 32
|
|
1643
|
+
x1: 723
|
|
1644
|
+
x2: 1021
|
|
1645
|
+
x3: 1021
|
|
1646
|
+
x4: 723
|
|
1647
|
+
y1: 274
|
|
1648
|
+
y2: 275
|
|
1649
|
+
y3: 375
|
|
1650
|
+
y4: 374
|
|
1651
|
+
barcodeBytes:
|
|
1652
|
+
- 67
|
|
1653
|
+
- 79
|
|
1654
|
+
- 68
|
|
1655
|
+
- 69
|
|
1656
|
+
- 49
|
|
1657
|
+
- 50
|
|
1658
|
+
- 56
|
|
1659
|
+
barcodeFormat: 2
|
|
1660
|
+
barcodeFormatString: CODE_128
|
|
1661
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1662
|
+
barcodeFormat_2: 0
|
|
1663
|
+
barcodeText: CODE128
|
|
1664
|
+
detailedResult:
|
|
1665
|
+
checkDigitBytes: []
|
|
1666
|
+
moduleSize: 2
|
|
1667
|
+
startCharsBytes: []
|
|
1668
|
+
stopCharsBytes: []
|
|
1669
|
+
localizationResult:
|
|
1670
|
+
ResultPoints:
|
|
1671
|
+
- 723, 274
|
|
1672
|
+
- 1021, 275
|
|
1673
|
+
- 1021, 375
|
|
1674
|
+
- 723, 374
|
|
1675
|
+
accompanyingTextBytes: []
|
|
1676
|
+
angle: 0
|
|
1677
|
+
barcodeFormat: 3147775
|
|
1678
|
+
barcodeFormatString: OneD
|
|
1679
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1680
|
+
barcodeFormat_2: 0
|
|
1681
|
+
confidence: 100
|
|
1682
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
1683
|
+
moduleSize: 2
|
|
1684
|
+
pageNumber: 1
|
|
1685
|
+
regionName: ''
|
|
1686
|
+
resultCoordinateType: 1
|
|
1687
|
+
terminatePhase: 32
|
|
1688
|
+
x1: 723
|
|
1689
|
+
x2: 1021
|
|
1690
|
+
x3: 1021
|
|
1691
|
+
x4: 723
|
|
1692
|
+
y1: 274
|
|
1693
|
+
y2: 275
|
|
1694
|
+
y3: 375
|
|
1695
|
+
y4: 374
|
|
1696
|
+
results:
|
|
1697
|
+
- accompanyingTextBytes: []
|
|
1698
|
+
barcodeFormat: 2
|
|
1699
|
+
barcodeFormatString: CODE_128
|
|
1700
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1701
|
+
barcodeFormat_2: 0
|
|
1702
|
+
bytes:
|
|
1703
|
+
- 67
|
|
1704
|
+
- 79
|
|
1705
|
+
- 68
|
|
1706
|
+
- 69
|
|
1707
|
+
- 49
|
|
1708
|
+
- 50
|
|
1709
|
+
- 56
|
|
1710
|
+
clarity: -1
|
|
1711
|
+
confidence: 100
|
|
1712
|
+
deformation: 0
|
|
1713
|
+
resultType: 0
|
|
1714
|
+
- BarcodeFormat: 4
|
|
1715
|
+
BarcodeFormatString: CODE_93
|
|
1716
|
+
LocalizationResult:
|
|
1717
|
+
ResultPoints:
|
|
1718
|
+
- 183, 652
|
|
1719
|
+
- 551, 652
|
|
1720
|
+
- 551, 768
|
|
1721
|
+
- 183, 768
|
|
1722
|
+
accompanyingTextBytes: []
|
|
1723
|
+
angle: 0
|
|
1724
|
+
barcodeFormat: 3147775
|
|
1725
|
+
barcodeFormatString: OneD
|
|
1726
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1727
|
+
barcodeFormat_2: 0
|
|
1728
|
+
confidence: 100
|
|
1729
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
1730
|
+
moduleSize: 4
|
|
1731
|
+
pageNumber: 1
|
|
1732
|
+
regionName: ''
|
|
1733
|
+
resultCoordinateType: 1
|
|
1734
|
+
terminatePhase: 32
|
|
1735
|
+
x1: 183
|
|
1736
|
+
x2: 551
|
|
1737
|
+
x3: 551
|
|
1738
|
+
x4: 183
|
|
1739
|
+
y1: 652
|
|
1740
|
+
y2: 652
|
|
1741
|
+
y3: 768
|
|
1742
|
+
y4: 768
|
|
1743
|
+
barcodeBytes:
|
|
1744
|
+
- 67
|
|
1745
|
+
- 79
|
|
1746
|
+
- 68
|
|
1747
|
+
- 69
|
|
1748
|
+
- 57
|
|
1749
|
+
- 51
|
|
1750
|
+
barcodeFormat: 4
|
|
1751
|
+
barcodeFormatString: CODE_93
|
|
1752
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1753
|
+
barcodeFormat_2: 0
|
|
1754
|
+
barcodeText: CODE93
|
|
1755
|
+
detailedResult:
|
|
1756
|
+
checkDigitBytes: []
|
|
1757
|
+
moduleSize: 4
|
|
1758
|
+
startCharsBytes:
|
|
1759
|
+
- 42
|
|
1760
|
+
stopCharsBytes:
|
|
1761
|
+
- 42
|
|
1762
|
+
localizationResult:
|
|
1763
|
+
ResultPoints:
|
|
1764
|
+
- 183, 652
|
|
1765
|
+
- 551, 652
|
|
1766
|
+
- 551, 768
|
|
1767
|
+
- 183, 768
|
|
1768
|
+
accompanyingTextBytes: []
|
|
1769
|
+
angle: 0
|
|
1770
|
+
barcodeFormat: 3147775
|
|
1771
|
+
barcodeFormatString: OneD
|
|
1772
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1773
|
+
barcodeFormat_2: 0
|
|
1774
|
+
confidence: 100
|
|
1775
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
1776
|
+
moduleSize: 4
|
|
1777
|
+
pageNumber: 1
|
|
1778
|
+
regionName: ''
|
|
1779
|
+
resultCoordinateType: 1
|
|
1780
|
+
terminatePhase: 32
|
|
1781
|
+
x1: 183
|
|
1782
|
+
x2: 551
|
|
1783
|
+
x3: 551
|
|
1784
|
+
x4: 183
|
|
1785
|
+
y1: 652
|
|
1786
|
+
y2: 652
|
|
1787
|
+
y3: 768
|
|
1788
|
+
y4: 768
|
|
1789
|
+
results:
|
|
1790
|
+
- accompanyingTextBytes: []
|
|
1791
|
+
barcodeFormat: 4
|
|
1792
|
+
barcodeFormatString: CODE_93
|
|
1793
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1794
|
+
barcodeFormat_2: 0
|
|
1795
|
+
bytes:
|
|
1796
|
+
- 67
|
|
1797
|
+
- 79
|
|
1798
|
+
- 68
|
|
1799
|
+
- 69
|
|
1800
|
+
- 57
|
|
1801
|
+
- 51
|
|
1802
|
+
clarity: -1
|
|
1803
|
+
confidence: 100
|
|
1804
|
+
deformation: 0
|
|
1805
|
+
resultType: 0
|
|
1806
|
+
- BarcodeFormat: 131072
|
|
1807
|
+
BarcodeFormatString: GS1 Databar Limited
|
|
1808
|
+
LocalizationResult:
|
|
1809
|
+
ResultPoints:
|
|
1810
|
+
- 1348, 663
|
|
1811
|
+
- 1545, 663
|
|
1812
|
+
- 1545, 797
|
|
1813
|
+
- 1348, 797
|
|
1814
|
+
accompanyingTextBytes: []
|
|
1815
|
+
angle: 0
|
|
1816
|
+
barcodeFormat: 131072
|
|
1817
|
+
barcodeFormatString: GS1 Databar Limited
|
|
1818
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1819
|
+
barcodeFormat_2: 0
|
|
1820
|
+
confidence: 100
|
|
1821
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
1822
|
+
moduleSize: 3
|
|
1823
|
+
pageNumber: 1
|
|
1824
|
+
regionName: ''
|
|
1825
|
+
resultCoordinateType: 1
|
|
1826
|
+
terminatePhase: 32
|
|
1827
|
+
x1: 1348
|
|
1828
|
+
x2: 1545
|
|
1829
|
+
x3: 1545
|
|
1830
|
+
x4: 1348
|
|
1831
|
+
y1: 663
|
|
1832
|
+
y2: 663
|
|
1833
|
+
y3: 797
|
|
1834
|
+
y4: 797
|
|
1835
|
+
barcodeBytes:
|
|
1836
|
+
- 48
|
|
1837
|
+
- 48
|
|
1838
|
+
- 48
|
|
1839
|
+
- 48
|
|
1840
|
+
- 49
|
|
1841
|
+
- 50
|
|
1842
|
+
- 51
|
|
1843
|
+
- 52
|
|
1844
|
+
- 53
|
|
1845
|
+
- 54
|
|
1846
|
+
- 55
|
|
1847
|
+
- 56
|
|
1848
|
+
- 57
|
|
1849
|
+
- 53
|
|
1850
|
+
barcodeFormat: 131072
|
|
1851
|
+
barcodeFormatString: GS1 Databar Limited
|
|
1852
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1853
|
+
barcodeFormat_2: 0
|
|
1854
|
+
barcodeText: '00001234567895'
|
|
1855
|
+
detailedResult: null
|
|
1856
|
+
localizationResult:
|
|
1857
|
+
ResultPoints:
|
|
1858
|
+
- 1348, 663
|
|
1859
|
+
- 1545, 663
|
|
1860
|
+
- 1545, 797
|
|
1861
|
+
- 1348, 797
|
|
1862
|
+
accompanyingTextBytes: []
|
|
1863
|
+
angle: 0
|
|
1864
|
+
barcodeFormat: 131072
|
|
1865
|
+
barcodeFormatString: GS1 Databar Limited
|
|
1866
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1867
|
+
barcodeFormat_2: 0
|
|
1868
|
+
confidence: 100
|
|
1869
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
1870
|
+
moduleSize: 3
|
|
1871
|
+
pageNumber: 1
|
|
1872
|
+
regionName: ''
|
|
1873
|
+
resultCoordinateType: 1
|
|
1874
|
+
terminatePhase: 32
|
|
1875
|
+
x1: 1348
|
|
1876
|
+
x2: 1545
|
|
1877
|
+
x3: 1545
|
|
1878
|
+
x4: 1348
|
|
1879
|
+
y1: 663
|
|
1880
|
+
y2: 663
|
|
1881
|
+
y3: 797
|
|
1882
|
+
y4: 797
|
|
1883
|
+
results:
|
|
1884
|
+
- accompanyingTextBytes: []
|
|
1885
|
+
barcodeFormat: 131072
|
|
1886
|
+
barcodeFormatString: GS1 Databar Limited
|
|
1887
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1888
|
+
barcodeFormat_2: 0
|
|
1889
|
+
bytes:
|
|
1890
|
+
- 48
|
|
1891
|
+
- 48
|
|
1892
|
+
- 48
|
|
1893
|
+
- 48
|
|
1894
|
+
- 49
|
|
1895
|
+
- 50
|
|
1896
|
+
- 51
|
|
1897
|
+
- 52
|
|
1898
|
+
- 53
|
|
1899
|
+
- 54
|
|
1900
|
+
- 55
|
|
1901
|
+
- 56
|
|
1902
|
+
- 57
|
|
1903
|
+
- 53
|
|
1904
|
+
clarity: -1
|
|
1905
|
+
confidence: 100
|
|
1906
|
+
deformation: 0
|
|
1907
|
+
resultType: 0
|
|
1908
|
+
- BarcodeFormat: 268435456
|
|
1909
|
+
BarcodeFormatString: AZTEC
|
|
1910
|
+
LocalizationResult:
|
|
1911
|
+
ResultPoints:
|
|
1912
|
+
- 777, 1354
|
|
1913
|
+
- 888, 1354
|
|
1914
|
+
- 888, 1465
|
|
1915
|
+
- 777, 1465
|
|
1916
|
+
accompanyingTextBytes: []
|
|
1917
|
+
angle: 0
|
|
1918
|
+
barcodeFormat: 268435456
|
|
1919
|
+
barcodeFormatString: AZTEC
|
|
1920
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1921
|
+
barcodeFormat_2: 0
|
|
1922
|
+
confidence: 100
|
|
1923
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
1924
|
+
moduleSize: 8
|
|
1925
|
+
pageNumber: 1
|
|
1926
|
+
regionName: ''
|
|
1927
|
+
resultCoordinateType: 1
|
|
1928
|
+
terminatePhase: 32
|
|
1929
|
+
x1: 777
|
|
1930
|
+
x2: 888
|
|
1931
|
+
x3: 888
|
|
1932
|
+
x4: 777
|
|
1933
|
+
y1: 1354
|
|
1934
|
+
y2: 1354
|
|
1935
|
+
y3: 1465
|
|
1936
|
+
y4: 1465
|
|
1937
|
+
barcodeBytes:
|
|
1938
|
+
- 68
|
|
1939
|
+
- 121
|
|
1940
|
+
- 110
|
|
1941
|
+
- 97
|
|
1942
|
+
- 109
|
|
1943
|
+
- 115
|
|
1944
|
+
- 111
|
|
1945
|
+
- 102
|
|
1946
|
+
- 116
|
|
1947
|
+
barcodeFormat: 268435456
|
|
1948
|
+
barcodeFormatString: AZTEC
|
|
1949
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1950
|
+
barcodeFormat_2: 0
|
|
1951
|
+
barcodeText: Dynamsoft
|
|
1952
|
+
detailedResult:
|
|
1953
|
+
columns: 15
|
|
1954
|
+
layerNumber: -1
|
|
1955
|
+
moduleSize: 8
|
|
1956
|
+
rows: 15
|
|
1957
|
+
localizationResult:
|
|
1958
|
+
ResultPoints:
|
|
1959
|
+
- 777, 1354
|
|
1960
|
+
- 888, 1354
|
|
1961
|
+
- 888, 1465
|
|
1962
|
+
- 777, 1465
|
|
1963
|
+
accompanyingTextBytes: []
|
|
1964
|
+
angle: 0
|
|
1965
|
+
barcodeFormat: 268435456
|
|
1966
|
+
barcodeFormatString: AZTEC
|
|
1967
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1968
|
+
barcodeFormat_2: 0
|
|
1969
|
+
confidence: 100
|
|
1970
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
1971
|
+
moduleSize: 8
|
|
1972
|
+
pageNumber: 1
|
|
1973
|
+
regionName: ''
|
|
1974
|
+
resultCoordinateType: 1
|
|
1975
|
+
terminatePhase: 32
|
|
1976
|
+
x1: 777
|
|
1977
|
+
x2: 888
|
|
1978
|
+
x3: 888
|
|
1979
|
+
x4: 777
|
|
1980
|
+
y1: 1354
|
|
1981
|
+
y2: 1354
|
|
1982
|
+
y3: 1465
|
|
1983
|
+
y4: 1465
|
|
1984
|
+
results:
|
|
1985
|
+
- accompanyingTextBytes: []
|
|
1986
|
+
barcodeFormat: 268435456
|
|
1987
|
+
barcodeFormatString: AZTEC
|
|
1988
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
1989
|
+
barcodeFormat_2: 0
|
|
1990
|
+
bytes:
|
|
1991
|
+
- 68
|
|
1992
|
+
- 121
|
|
1993
|
+
- 110
|
|
1994
|
+
- 97
|
|
1995
|
+
- 109
|
|
1996
|
+
- 115
|
|
1997
|
+
- 111
|
|
1998
|
+
- 102
|
|
1999
|
+
- 116
|
|
2000
|
+
clarity: -1
|
|
2001
|
+
confidence: 100
|
|
2002
|
+
deformation: 0
|
|
2003
|
+
resultType: 0
|
|
2004
|
+
- accompanyingTextBytes: []
|
|
2005
|
+
barcodeFormat: 268435456
|
|
2006
|
+
barcodeFormatString: AZTEC
|
|
2007
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2008
|
+
barcodeFormat_2: 0
|
|
2009
|
+
bytes:
|
|
2010
|
+
- 68
|
|
2011
|
+
- 121
|
|
2012
|
+
- 110
|
|
2013
|
+
- 97
|
|
2014
|
+
- 109
|
|
2015
|
+
- 115
|
|
2016
|
+
- 111
|
|
2017
|
+
- 102
|
|
2018
|
+
- 116
|
|
2019
|
+
clarity: -1
|
|
2020
|
+
confidence: 100
|
|
2021
|
+
deformation: 0
|
|
2022
|
+
resultType: 1
|
|
2023
|
+
- BarcodeFormat: 134217728
|
|
2024
|
+
BarcodeFormatString: DATAMATRIX
|
|
2025
|
+
LocalizationResult:
|
|
2026
|
+
ResultPoints:
|
|
2027
|
+
- 1074, 1346
|
|
2028
|
+
- 1229, 1346
|
|
2029
|
+
- 1229, 1502
|
|
2030
|
+
- 1074, 1502
|
|
2031
|
+
accompanyingTextBytes: []
|
|
2032
|
+
angle: 0
|
|
2033
|
+
barcodeFormat: 134217728
|
|
2034
|
+
barcodeFormatString: DATAMATRIX
|
|
2035
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2036
|
+
barcodeFormat_2: 0
|
|
2037
|
+
confidence: 98
|
|
2038
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2039
|
+
moduleSize: 9
|
|
2040
|
+
pageNumber: 1
|
|
2041
|
+
regionName: ''
|
|
2042
|
+
resultCoordinateType: 1
|
|
2043
|
+
terminatePhase: 32
|
|
2044
|
+
x1: 1074
|
|
2045
|
+
x2: 1229
|
|
2046
|
+
x3: 1229
|
|
2047
|
+
x4: 1074
|
|
2048
|
+
y1: 1346
|
|
2049
|
+
y2: 1346
|
|
2050
|
+
y3: 1502
|
|
2051
|
+
y4: 1502
|
|
2052
|
+
barcodeBytes:
|
|
2053
|
+
- 119
|
|
2054
|
+
- 119
|
|
2055
|
+
- 119
|
|
2056
|
+
- 46
|
|
2057
|
+
- 100
|
|
2058
|
+
- 121
|
|
2059
|
+
- 110
|
|
2060
|
+
- 97
|
|
2061
|
+
- 109
|
|
2062
|
+
- 115
|
|
2063
|
+
- 111
|
|
2064
|
+
- 102
|
|
2065
|
+
- 116
|
|
2066
|
+
- 46
|
|
2067
|
+
- 99
|
|
2068
|
+
- 111
|
|
2069
|
+
- 109
|
|
2070
|
+
barcodeFormat: 134217728
|
|
2071
|
+
barcodeFormatString: DATAMATRIX
|
|
2072
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2073
|
+
barcodeFormat_2: 0
|
|
2074
|
+
barcodeText: www.dynamsoft.com
|
|
2075
|
+
detailedResult:
|
|
2076
|
+
columns: 18
|
|
2077
|
+
dataRegionColumns: 16
|
|
2078
|
+
dataRegionNumber: 1
|
|
2079
|
+
dataRegionRows: 16
|
|
2080
|
+
moduleSize: 9
|
|
2081
|
+
rows: 18
|
|
2082
|
+
localizationResult:
|
|
2083
|
+
ResultPoints:
|
|
2084
|
+
- 1074, 1346
|
|
2085
|
+
- 1229, 1346
|
|
2086
|
+
- 1229, 1502
|
|
2087
|
+
- 1074, 1502
|
|
2088
|
+
accompanyingTextBytes: []
|
|
2089
|
+
angle: 0
|
|
2090
|
+
barcodeFormat: 134217728
|
|
2091
|
+
barcodeFormatString: DATAMATRIX
|
|
2092
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2093
|
+
barcodeFormat_2: 0
|
|
2094
|
+
confidence: 98
|
|
2095
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2096
|
+
moduleSize: 9
|
|
2097
|
+
pageNumber: 1
|
|
2098
|
+
regionName: ''
|
|
2099
|
+
resultCoordinateType: 1
|
|
2100
|
+
terminatePhase: 32
|
|
2101
|
+
x1: 1074
|
|
2102
|
+
x2: 1229
|
|
2103
|
+
x3: 1229
|
|
2104
|
+
x4: 1074
|
|
2105
|
+
y1: 1346
|
|
2106
|
+
y2: 1346
|
|
2107
|
+
y3: 1502
|
|
2108
|
+
y4: 1502
|
|
2109
|
+
results:
|
|
2110
|
+
- accompanyingTextBytes: []
|
|
2111
|
+
barcodeFormat: 134217728
|
|
2112
|
+
barcodeFormatString: DATAMATRIX
|
|
2113
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2114
|
+
barcodeFormat_2: 0
|
|
2115
|
+
bytes:
|
|
2116
|
+
- 119
|
|
2117
|
+
- 119
|
|
2118
|
+
- 119
|
|
2119
|
+
- 46
|
|
2120
|
+
- 100
|
|
2121
|
+
- 121
|
|
2122
|
+
- 110
|
|
2123
|
+
- 97
|
|
2124
|
+
- 109
|
|
2125
|
+
- 115
|
|
2126
|
+
- 111
|
|
2127
|
+
- 102
|
|
2128
|
+
- 116
|
|
2129
|
+
- 46
|
|
2130
|
+
- 99
|
|
2131
|
+
- 111
|
|
2132
|
+
- 109
|
|
2133
|
+
clarity: -1
|
|
2134
|
+
confidence: 98
|
|
2135
|
+
deformation: 0
|
|
2136
|
+
resultType: 0
|
|
2137
|
+
- BarcodeFormat: 0
|
|
2138
|
+
BarcodeFormatString: USPS Intelligent Mail
|
|
2139
|
+
LocalizationResult:
|
|
2140
|
+
ResultPoints:
|
|
2141
|
+
- 1753, 1380
|
|
2142
|
+
- 2397, 1381
|
|
2143
|
+
- 2397, 1480
|
|
2144
|
+
- 1753, 1479
|
|
2145
|
+
accompanyingTextBytes: []
|
|
2146
|
+
angle: 0
|
|
2147
|
+
barcodeFormat: 0
|
|
2148
|
+
barcodeFormatString: USPS Intelligent Mail
|
|
2149
|
+
barcodeFormatString_2: USPS Intelligent Mail
|
|
2150
|
+
barcodeFormat_2: 1048576
|
|
2151
|
+
confidence: 96
|
|
2152
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2153
|
+
moduleSize: 5
|
|
2154
|
+
pageNumber: 1
|
|
2155
|
+
regionName: ''
|
|
2156
|
+
resultCoordinateType: 1
|
|
2157
|
+
terminatePhase: 32
|
|
2158
|
+
x1: 1753
|
|
2159
|
+
x2: 2397
|
|
2160
|
+
x3: 2397
|
|
2161
|
+
x4: 1753
|
|
2162
|
+
y1: 1380
|
|
2163
|
+
y2: 1381
|
|
2164
|
+
y3: 1480
|
|
2165
|
+
y4: 1479
|
|
2166
|
+
barcodeBytes:
|
|
2167
|
+
- 52
|
|
2168
|
+
- 52
|
|
2169
|
+
- 49
|
|
2170
|
+
- 50
|
|
2171
|
+
- 51
|
|
2172
|
+
- 49
|
|
2173
|
+
- 50
|
|
2174
|
+
- 51
|
|
2175
|
+
- 52
|
|
2176
|
+
- 53
|
|
2177
|
+
- 54
|
|
2178
|
+
- 49
|
|
2179
|
+
- 50
|
|
2180
|
+
- 51
|
|
2181
|
+
- 52
|
|
2182
|
+
- 53
|
|
2183
|
+
- 54
|
|
2184
|
+
- 55
|
|
2185
|
+
- 56
|
|
2186
|
+
- 57
|
|
2187
|
+
barcodeFormat: 0
|
|
2188
|
+
barcodeFormatString: USPS Intelligent Mail
|
|
2189
|
+
barcodeFormatString_2: USPS Intelligent Mail
|
|
2190
|
+
barcodeFormat_2: 1048576
|
|
2191
|
+
barcodeText: '44123123456123456789'
|
|
2192
|
+
detailedResult: null
|
|
2193
|
+
localizationResult:
|
|
2194
|
+
ResultPoints:
|
|
2195
|
+
- 1753, 1380
|
|
2196
|
+
- 2397, 1381
|
|
2197
|
+
- 2397, 1480
|
|
2198
|
+
- 1753, 1479
|
|
2199
|
+
accompanyingTextBytes: []
|
|
2200
|
+
angle: 0
|
|
2201
|
+
barcodeFormat: 0
|
|
2202
|
+
barcodeFormatString: USPS Intelligent Mail
|
|
2203
|
+
barcodeFormatString_2: USPS Intelligent Mail
|
|
2204
|
+
barcodeFormat_2: 1048576
|
|
2205
|
+
confidence: 96
|
|
2206
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2207
|
+
moduleSize: 5
|
|
2208
|
+
pageNumber: 1
|
|
2209
|
+
regionName: ''
|
|
2210
|
+
resultCoordinateType: 1
|
|
2211
|
+
terminatePhase: 32
|
|
2212
|
+
x1: 1753
|
|
2213
|
+
x2: 2397
|
|
2214
|
+
x3: 2397
|
|
2215
|
+
x4: 1753
|
|
2216
|
+
y1: 1380
|
|
2217
|
+
y2: 1381
|
|
2218
|
+
y3: 1480
|
|
2219
|
+
y4: 1479
|
|
2220
|
+
results:
|
|
2221
|
+
- accompanyingTextBytes: []
|
|
2222
|
+
barcodeFormat: 0
|
|
2223
|
+
barcodeFormatString: USPS Intelligent Mail
|
|
2224
|
+
barcodeFormatString_2: USPS Intelligent Mail
|
|
2225
|
+
barcodeFormat_2: 1048576
|
|
2226
|
+
bytes:
|
|
2227
|
+
- 52
|
|
2228
|
+
- 52
|
|
2229
|
+
- 49
|
|
2230
|
+
- 50
|
|
2231
|
+
- 51
|
|
2232
|
+
- 49
|
|
2233
|
+
- 50
|
|
2234
|
+
- 51
|
|
2235
|
+
- 52
|
|
2236
|
+
- 53
|
|
2237
|
+
- 54
|
|
2238
|
+
- 49
|
|
2239
|
+
- 50
|
|
2240
|
+
- 51
|
|
2241
|
+
- 52
|
|
2242
|
+
- 53
|
|
2243
|
+
- 54
|
|
2244
|
+
- 55
|
|
2245
|
+
- 56
|
|
2246
|
+
- 57
|
|
2247
|
+
clarity: -1
|
|
2248
|
+
confidence: 96
|
|
2249
|
+
deformation: 0
|
|
2250
|
+
resultType: 0
|
|
2251
|
+
- BarcodeFormat: 0
|
|
2252
|
+
BarcodeFormatString: Australian Post
|
|
2253
|
+
LocalizationResult:
|
|
2254
|
+
ResultPoints:
|
|
2255
|
+
- 1838, 282
|
|
2256
|
+
- 2294, 282
|
|
2257
|
+
- 2294, 346
|
|
2258
|
+
- 1838, 346
|
|
2259
|
+
accompanyingTextBytes: []
|
|
2260
|
+
angle: 0
|
|
2261
|
+
barcodeFormat: 0
|
|
2262
|
+
barcodeFormatString: Australian Post
|
|
2263
|
+
barcodeFormatString_2: Australian Post
|
|
2264
|
+
barcodeFormat_2: 8388608
|
|
2265
|
+
confidence: 95
|
|
2266
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2267
|
+
moduleSize: 6
|
|
2268
|
+
pageNumber: 1
|
|
2269
|
+
regionName: ''
|
|
2270
|
+
resultCoordinateType: 1
|
|
2271
|
+
terminatePhase: 32
|
|
2272
|
+
x1: 1838
|
|
2273
|
+
x2: 2294
|
|
2274
|
+
x3: 2294
|
|
2275
|
+
x4: 1838
|
|
2276
|
+
y1: 282
|
|
2277
|
+
y2: 282
|
|
2278
|
+
y3: 346
|
|
2279
|
+
y4: 346
|
|
2280
|
+
barcodeBytes:
|
|
2281
|
+
- 49
|
|
2282
|
+
- 49
|
|
2283
|
+
- 49
|
|
2284
|
+
- 50
|
|
2285
|
+
- 51
|
|
2286
|
+
- 52
|
|
2287
|
+
- 53
|
|
2288
|
+
- 54
|
|
2289
|
+
- 55
|
|
2290
|
+
- 56
|
|
2291
|
+
- 50
|
|
2292
|
+
- 54
|
|
2293
|
+
- 52
|
|
2294
|
+
- 52
|
|
2295
|
+
- 49
|
|
2296
|
+
- 57
|
|
2297
|
+
- 49
|
|
2298
|
+
- 53
|
|
2299
|
+
barcodeFormat: 0
|
|
2300
|
+
barcodeFormatString: Australian Post
|
|
2301
|
+
barcodeFormatString_2: Australian Post
|
|
2302
|
+
barcodeFormat_2: 8388608
|
|
2303
|
+
barcodeText: 11,12345678,26 44 19 15
|
|
2304
|
+
detailedResult: null
|
|
2305
|
+
localizationResult:
|
|
2306
|
+
ResultPoints:
|
|
2307
|
+
- 1838, 282
|
|
2308
|
+
- 2294, 282
|
|
2309
|
+
- 2294, 346
|
|
2310
|
+
- 1838, 346
|
|
2311
|
+
accompanyingTextBytes: []
|
|
2312
|
+
angle: 0
|
|
2313
|
+
barcodeFormat: 0
|
|
2314
|
+
barcodeFormatString: Australian Post
|
|
2315
|
+
barcodeFormatString_2: Australian Post
|
|
2316
|
+
barcodeFormat_2: 8388608
|
|
2317
|
+
confidence: 95
|
|
2318
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2319
|
+
moduleSize: 6
|
|
2320
|
+
pageNumber: 1
|
|
2321
|
+
regionName: ''
|
|
2322
|
+
resultCoordinateType: 1
|
|
2323
|
+
terminatePhase: 32
|
|
2324
|
+
x1: 1838
|
|
2325
|
+
x2: 2294
|
|
2326
|
+
x3: 2294
|
|
2327
|
+
x4: 1838
|
|
2328
|
+
y1: 282
|
|
2329
|
+
y2: 282
|
|
2330
|
+
y3: 346
|
|
2331
|
+
y4: 346
|
|
2332
|
+
results:
|
|
2333
|
+
- accompanyingTextBytes: []
|
|
2334
|
+
barcodeFormat: 0
|
|
2335
|
+
barcodeFormatString: Australian Post
|
|
2336
|
+
barcodeFormatString_2: Australian Post
|
|
2337
|
+
barcodeFormat_2: 8388608
|
|
2338
|
+
bytes:
|
|
2339
|
+
- 49
|
|
2340
|
+
- 49
|
|
2341
|
+
- 49
|
|
2342
|
+
- 50
|
|
2343
|
+
- 51
|
|
2344
|
+
- 52
|
|
2345
|
+
- 53
|
|
2346
|
+
- 54
|
|
2347
|
+
- 55
|
|
2348
|
+
- 56
|
|
2349
|
+
- 50
|
|
2350
|
+
- 54
|
|
2351
|
+
- 52
|
|
2352
|
+
- 52
|
|
2353
|
+
- 49
|
|
2354
|
+
- 57
|
|
2355
|
+
- 49
|
|
2356
|
+
- 53
|
|
2357
|
+
clarity: -1
|
|
2358
|
+
confidence: 95
|
|
2359
|
+
deformation: 0
|
|
2360
|
+
resultType: 0
|
|
2361
|
+
- BarcodeFormat: 0
|
|
2362
|
+
BarcodeFormatString: Postnet
|
|
2363
|
+
LocalizationResult:
|
|
2364
|
+
ResultPoints:
|
|
2365
|
+
- 1699, 1067
|
|
2366
|
+
- 2467, 1067
|
|
2367
|
+
- 2467, 1106
|
|
2368
|
+
- 1699, 1106
|
|
2369
|
+
accompanyingTextBytes: []
|
|
2370
|
+
angle: 0
|
|
2371
|
+
barcodeFormat: 0
|
|
2372
|
+
barcodeFormatString: Postnet
|
|
2373
|
+
barcodeFormatString_2: Postnet
|
|
2374
|
+
barcodeFormat_2: 2097152
|
|
2375
|
+
confidence: 93
|
|
2376
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2377
|
+
moduleSize: 6
|
|
2378
|
+
pageNumber: 1
|
|
2379
|
+
regionName: ''
|
|
2380
|
+
resultCoordinateType: 1
|
|
2381
|
+
terminatePhase: 32
|
|
2382
|
+
x1: 1699
|
|
2383
|
+
x2: 2467
|
|
2384
|
+
x3: 2467
|
|
2385
|
+
x4: 1699
|
|
2386
|
+
y1: 1067
|
|
2387
|
+
y2: 1067
|
|
2388
|
+
y3: 1106
|
|
2389
|
+
y4: 1106
|
|
2390
|
+
barcodeBytes:
|
|
2391
|
+
- 49
|
|
2392
|
+
- 50
|
|
2393
|
+
- 51
|
|
2394
|
+
- 52
|
|
2395
|
+
- 53
|
|
2396
|
+
- 54
|
|
2397
|
+
- 55
|
|
2398
|
+
- 56
|
|
2399
|
+
- 57
|
|
2400
|
+
- 48
|
|
2401
|
+
- 49
|
|
2402
|
+
- 52
|
|
2403
|
+
barcodeFormat: 0
|
|
2404
|
+
barcodeFormatString: Postnet
|
|
2405
|
+
barcodeFormatString_2: Postnet
|
|
2406
|
+
barcodeFormat_2: 2097152
|
|
2407
|
+
barcodeText: '123456789014'
|
|
2408
|
+
detailedResult: null
|
|
2409
|
+
localizationResult:
|
|
2410
|
+
ResultPoints:
|
|
2411
|
+
- 1699, 1067
|
|
2412
|
+
- 2467, 1067
|
|
2413
|
+
- 2467, 1106
|
|
2414
|
+
- 1699, 1106
|
|
2415
|
+
accompanyingTextBytes: []
|
|
2416
|
+
angle: 0
|
|
2417
|
+
barcodeFormat: 0
|
|
2418
|
+
barcodeFormatString: Postnet
|
|
2419
|
+
barcodeFormatString_2: Postnet
|
|
2420
|
+
barcodeFormat_2: 2097152
|
|
2421
|
+
confidence: 93
|
|
2422
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2423
|
+
moduleSize: 6
|
|
2424
|
+
pageNumber: 1
|
|
2425
|
+
regionName: ''
|
|
2426
|
+
resultCoordinateType: 1
|
|
2427
|
+
terminatePhase: 32
|
|
2428
|
+
x1: 1699
|
|
2429
|
+
x2: 2467
|
|
2430
|
+
x3: 2467
|
|
2431
|
+
x4: 1699
|
|
2432
|
+
y1: 1067
|
|
2433
|
+
y2: 1067
|
|
2434
|
+
y3: 1106
|
|
2435
|
+
y4: 1106
|
|
2436
|
+
results:
|
|
2437
|
+
- accompanyingTextBytes: []
|
|
2438
|
+
barcodeFormat: 0
|
|
2439
|
+
barcodeFormatString: Postnet
|
|
2440
|
+
barcodeFormatString_2: Postnet
|
|
2441
|
+
barcodeFormat_2: 2097152
|
|
2442
|
+
bytes:
|
|
2443
|
+
- 49
|
|
2444
|
+
- 50
|
|
2445
|
+
- 51
|
|
2446
|
+
- 52
|
|
2447
|
+
- 53
|
|
2448
|
+
- 54
|
|
2449
|
+
- 55
|
|
2450
|
+
- 56
|
|
2451
|
+
- 57
|
|
2452
|
+
- 48
|
|
2453
|
+
- 49
|
|
2454
|
+
- 52
|
|
2455
|
+
clarity: -1
|
|
2456
|
+
confidence: 93
|
|
2457
|
+
deformation: 0
|
|
2458
|
+
resultType: 0
|
|
2459
|
+
- BarcodeFormat: 0
|
|
2460
|
+
BarcodeFormatString: Royal Mail 4-State Customer Barcode
|
|
2461
|
+
LocalizationResult:
|
|
2462
|
+
ResultPoints:
|
|
2463
|
+
- 1799, 554
|
|
2464
|
+
- 2367, 554
|
|
2465
|
+
- 2367, 618
|
|
2466
|
+
- 1799, 618
|
|
2467
|
+
accompanyingTextBytes: []
|
|
2468
|
+
angle: 0
|
|
2469
|
+
barcodeFormat: 0
|
|
2470
|
+
barcodeFormatString: Royal Mail 4-State Customer Barcode
|
|
2471
|
+
barcodeFormatString_2: Royal Mail 4-State Customer Barcode
|
|
2472
|
+
barcodeFormat_2: 16777216
|
|
2473
|
+
confidence: 92
|
|
2474
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2475
|
+
moduleSize: 6
|
|
2476
|
+
pageNumber: 1
|
|
2477
|
+
regionName: ''
|
|
2478
|
+
resultCoordinateType: 1
|
|
2479
|
+
terminatePhase: 32
|
|
2480
|
+
x1: 1799
|
|
2481
|
+
x2: 2367
|
|
2482
|
+
x3: 2367
|
|
2483
|
+
x4: 1799
|
|
2484
|
+
y1: 554
|
|
2485
|
+
y2: 554
|
|
2486
|
+
y3: 618
|
|
2487
|
+
y4: 618
|
|
2488
|
+
barcodeBytes:
|
|
2489
|
+
- 49
|
|
2490
|
+
- 50
|
|
2491
|
+
- 51
|
|
2492
|
+
- 52
|
|
2493
|
+
- 53
|
|
2494
|
+
- 54
|
|
2495
|
+
- 55
|
|
2496
|
+
- 65
|
|
2497
|
+
- 66
|
|
2498
|
+
- 67
|
|
2499
|
+
barcodeFormat: 0
|
|
2500
|
+
barcodeFormatString: Royal Mail 4-State Customer Barcode
|
|
2501
|
+
barcodeFormatString_2: Royal Mail 4-State Customer Barcode
|
|
2502
|
+
barcodeFormat_2: 16777216
|
|
2503
|
+
barcodeText: 1234567ABC
|
|
2504
|
+
detailedResult: null
|
|
2505
|
+
localizationResult:
|
|
2506
|
+
ResultPoints:
|
|
2507
|
+
- 1799, 554
|
|
2508
|
+
- 2367, 554
|
|
2509
|
+
- 2367, 618
|
|
2510
|
+
- 1799, 618
|
|
2511
|
+
accompanyingTextBytes: []
|
|
2512
|
+
angle: 0
|
|
2513
|
+
barcodeFormat: 0
|
|
2514
|
+
barcodeFormatString: Royal Mail 4-State Customer Barcode
|
|
2515
|
+
barcodeFormatString_2: Royal Mail 4-State Customer Barcode
|
|
2516
|
+
barcodeFormat_2: 16777216
|
|
2517
|
+
confidence: 92
|
|
2518
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2519
|
+
moduleSize: 6
|
|
2520
|
+
pageNumber: 1
|
|
2521
|
+
regionName: ''
|
|
2522
|
+
resultCoordinateType: 1
|
|
2523
|
+
terminatePhase: 32
|
|
2524
|
+
x1: 1799
|
|
2525
|
+
x2: 2367
|
|
2526
|
+
x3: 2367
|
|
2527
|
+
x4: 1799
|
|
2528
|
+
y1: 554
|
|
2529
|
+
y2: 554
|
|
2530
|
+
y3: 618
|
|
2531
|
+
y4: 618
|
|
2532
|
+
results:
|
|
2533
|
+
- accompanyingTextBytes: []
|
|
2534
|
+
barcodeFormat: 0
|
|
2535
|
+
barcodeFormatString: Royal Mail 4-State Customer Barcode
|
|
2536
|
+
barcodeFormatString_2: Royal Mail 4-State Customer Barcode
|
|
2537
|
+
barcodeFormat_2: 16777216
|
|
2538
|
+
bytes:
|
|
2539
|
+
- 49
|
|
2540
|
+
- 50
|
|
2541
|
+
- 51
|
|
2542
|
+
- 52
|
|
2543
|
+
- 53
|
|
2544
|
+
- 54
|
|
2545
|
+
- 55
|
|
2546
|
+
- 65
|
|
2547
|
+
- 66
|
|
2548
|
+
- 67
|
|
2549
|
+
clarity: -1
|
|
2550
|
+
confidence: 92
|
|
2551
|
+
deformation: 0
|
|
2552
|
+
resultType: 0
|
|
2553
|
+
- BarcodeFormat: 0
|
|
2554
|
+
BarcodeFormatString: Planet
|
|
2555
|
+
LocalizationResult:
|
|
2556
|
+
ResultPoints:
|
|
2557
|
+
- 1696, 814
|
|
2558
|
+
- 2464, 814
|
|
2559
|
+
- 2464, 853
|
|
2560
|
+
- 1696, 853
|
|
2561
|
+
accompanyingTextBytes: []
|
|
2562
|
+
angle: 0
|
|
2563
|
+
barcodeFormat: 0
|
|
2564
|
+
barcodeFormatString: Planet
|
|
2565
|
+
barcodeFormatString_2: Planet
|
|
2566
|
+
barcodeFormat_2: 4194304
|
|
2567
|
+
confidence: 92
|
|
2568
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2569
|
+
moduleSize: 6
|
|
2570
|
+
pageNumber: 1
|
|
2571
|
+
regionName: ''
|
|
2572
|
+
resultCoordinateType: 1
|
|
2573
|
+
terminatePhase: 32
|
|
2574
|
+
x1: 1696
|
|
2575
|
+
x2: 2464
|
|
2576
|
+
x3: 2464
|
|
2577
|
+
x4: 1696
|
|
2578
|
+
y1: 814
|
|
2579
|
+
y2: 814
|
|
2580
|
+
y3: 853
|
|
2581
|
+
y4: 853
|
|
2582
|
+
barcodeBytes:
|
|
2583
|
+
- 49
|
|
2584
|
+
- 50
|
|
2585
|
+
- 51
|
|
2586
|
+
- 52
|
|
2587
|
+
- 53
|
|
2588
|
+
- 54
|
|
2589
|
+
- 55
|
|
2590
|
+
- 56
|
|
2591
|
+
- 57
|
|
2592
|
+
- 48
|
|
2593
|
+
- 49
|
|
2594
|
+
- 52
|
|
2595
|
+
barcodeFormat: 0
|
|
2596
|
+
barcodeFormatString: Planet
|
|
2597
|
+
barcodeFormatString_2: Planet
|
|
2598
|
+
barcodeFormat_2: 4194304
|
|
2599
|
+
barcodeText: '123456789014'
|
|
2600
|
+
detailedResult: null
|
|
2601
|
+
localizationResult:
|
|
2602
|
+
ResultPoints:
|
|
2603
|
+
- 1696, 814
|
|
2604
|
+
- 2464, 814
|
|
2605
|
+
- 2464, 853
|
|
2606
|
+
- 1696, 853
|
|
2607
|
+
accompanyingTextBytes: []
|
|
2608
|
+
angle: 0
|
|
2609
|
+
barcodeFormat: 0
|
|
2610
|
+
barcodeFormatString: Planet
|
|
2611
|
+
barcodeFormatString_2: Planet
|
|
2612
|
+
barcodeFormat_2: 4194304
|
|
2613
|
+
confidence: 92
|
|
2614
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2615
|
+
moduleSize: 6
|
|
2616
|
+
pageNumber: 1
|
|
2617
|
+
regionName: ''
|
|
2618
|
+
resultCoordinateType: 1
|
|
2619
|
+
terminatePhase: 32
|
|
2620
|
+
x1: 1696
|
|
2621
|
+
x2: 2464
|
|
2622
|
+
x3: 2464
|
|
2623
|
+
x4: 1696
|
|
2624
|
+
y1: 814
|
|
2625
|
+
y2: 814
|
|
2626
|
+
y3: 853
|
|
2627
|
+
y4: 853
|
|
2628
|
+
results:
|
|
2629
|
+
- accompanyingTextBytes: []
|
|
2630
|
+
barcodeFormat: 0
|
|
2631
|
+
barcodeFormatString: Planet
|
|
2632
|
+
barcodeFormatString_2: Planet
|
|
2633
|
+
barcodeFormat_2: 4194304
|
|
2634
|
+
bytes:
|
|
2635
|
+
- 49
|
|
2636
|
+
- 50
|
|
2637
|
+
- 51
|
|
2638
|
+
- 52
|
|
2639
|
+
- 53
|
|
2640
|
+
- 54
|
|
2641
|
+
- 55
|
|
2642
|
+
- 56
|
|
2643
|
+
- 57
|
|
2644
|
+
- 48
|
|
2645
|
+
- 49
|
|
2646
|
+
- 52
|
|
2647
|
+
clarity: -1
|
|
2648
|
+
confidence: 92
|
|
2649
|
+
deformation: 0
|
|
2650
|
+
resultType: 0
|
|
2651
|
+
- BarcodeFormat: 16384
|
|
2652
|
+
BarcodeFormatString: GS1 Databar Stacked Omnidirectional
|
|
2653
|
+
LocalizationResult:
|
|
2654
|
+
ResultPoints:
|
|
2655
|
+
- 1382, 318
|
|
2656
|
+
- 1578, 318
|
|
2657
|
+
- 1570, 515
|
|
2658
|
+
- 1377, 515
|
|
2659
|
+
accompanyingTextBytes: []
|
|
2660
|
+
angle: 180
|
|
2661
|
+
barcodeFormat: 16384
|
|
2662
|
+
barcodeFormatString: GS1 Databar Stacked Omnidirectional
|
|
2663
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2664
|
+
barcodeFormat_2: 0
|
|
2665
|
+
confidence: 90
|
|
2666
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2667
|
+
moduleSize: 4
|
|
2668
|
+
pageNumber: 1
|
|
2669
|
+
regionName: ''
|
|
2670
|
+
resultCoordinateType: 1
|
|
2671
|
+
terminatePhase: 32
|
|
2672
|
+
x1: 1382
|
|
2673
|
+
x2: 1578
|
|
2674
|
+
x3: 1570
|
|
2675
|
+
x4: 1377
|
|
2676
|
+
y1: 318
|
|
2677
|
+
y2: 318
|
|
2678
|
+
y3: 515
|
|
2679
|
+
y4: 515
|
|
2680
|
+
barcodeBytes:
|
|
2681
|
+
- 48
|
|
2682
|
+
- 49
|
|
2683
|
+
- 50
|
|
2684
|
+
- 51
|
|
2685
|
+
- 48
|
|
2686
|
+
- 52
|
|
2687
|
+
- 53
|
|
2688
|
+
- 54
|
|
2689
|
+
- 48
|
|
2690
|
+
- 55
|
|
2691
|
+
- 56
|
|
2692
|
+
- 57
|
|
2693
|
+
- 48
|
|
2694
|
+
- 53
|
|
2695
|
+
barcodeFormat: 16384
|
|
2696
|
+
barcodeFormatString: GS1 Databar Stacked Omnidirectional
|
|
2697
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2698
|
+
barcodeFormat_2: 0
|
|
2699
|
+
barcodeText: '01230456078905'
|
|
2700
|
+
detailedResult: null
|
|
2701
|
+
localizationResult:
|
|
2702
|
+
ResultPoints:
|
|
2703
|
+
- 1382, 318
|
|
2704
|
+
- 1578, 318
|
|
2705
|
+
- 1570, 515
|
|
2706
|
+
- 1377, 515
|
|
2707
|
+
accompanyingTextBytes: []
|
|
2708
|
+
angle: 180
|
|
2709
|
+
barcodeFormat: 16384
|
|
2710
|
+
barcodeFormatString: GS1 Databar Stacked Omnidirectional
|
|
2711
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2712
|
+
barcodeFormat_2: 0
|
|
2713
|
+
confidence: 90
|
|
2714
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2715
|
+
moduleSize: 4
|
|
2716
|
+
pageNumber: 1
|
|
2717
|
+
regionName: ''
|
|
2718
|
+
resultCoordinateType: 1
|
|
2719
|
+
terminatePhase: 32
|
|
2720
|
+
x1: 1382
|
|
2721
|
+
x2: 1578
|
|
2722
|
+
x3: 1570
|
|
2723
|
+
x4: 1377
|
|
2724
|
+
y1: 318
|
|
2725
|
+
y2: 318
|
|
2726
|
+
y3: 515
|
|
2727
|
+
y4: 515
|
|
2728
|
+
results:
|
|
2729
|
+
- accompanyingTextBytes: []
|
|
2730
|
+
barcodeFormat: 16384
|
|
2731
|
+
barcodeFormatString: GS1 Databar Stacked Omnidirectional
|
|
2732
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2733
|
+
barcodeFormat_2: 0
|
|
2734
|
+
bytes:
|
|
2735
|
+
- 48
|
|
2736
|
+
- 49
|
|
2737
|
+
- 50
|
|
2738
|
+
- 51
|
|
2739
|
+
- 48
|
|
2740
|
+
- 52
|
|
2741
|
+
- 53
|
|
2742
|
+
- 54
|
|
2743
|
+
- 48
|
|
2744
|
+
- 55
|
|
2745
|
+
- 56
|
|
2746
|
+
- 57
|
|
2747
|
+
- 48
|
|
2748
|
+
- 53
|
|
2749
|
+
clarity: -1
|
|
2750
|
+
confidence: 90
|
|
2751
|
+
deformation: 0
|
|
2752
|
+
resultType: 0
|
|
2753
|
+
- BarcodeFormat: 33554432
|
|
2754
|
+
BarcodeFormatString: PDF417
|
|
2755
|
+
LocalizationResult:
|
|
2756
|
+
ResultPoints:
|
|
2757
|
+
- 153, 1346
|
|
2758
|
+
- 605, 1346
|
|
2759
|
+
- 605, 1486
|
|
2760
|
+
- 153, 1486
|
|
2761
|
+
accompanyingTextBytes: []
|
|
2762
|
+
angle: 0
|
|
2763
|
+
barcodeFormat: 33554432
|
|
2764
|
+
barcodeFormatString: PDF417
|
|
2765
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2766
|
+
barcodeFormat_2: 0
|
|
2767
|
+
confidence: 88
|
|
2768
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2769
|
+
moduleSize: 4
|
|
2770
|
+
pageNumber: 1
|
|
2771
|
+
regionName: ''
|
|
2772
|
+
resultCoordinateType: 1
|
|
2773
|
+
terminatePhase: 32
|
|
2774
|
+
x1: 153
|
|
2775
|
+
x2: 605
|
|
2776
|
+
x3: 605
|
|
2777
|
+
x4: 153
|
|
2778
|
+
y1: 1346
|
|
2779
|
+
y2: 1346
|
|
2780
|
+
y3: 1486
|
|
2781
|
+
y4: 1486
|
|
2782
|
+
barcodeBytes:
|
|
2783
|
+
- 119
|
|
2784
|
+
- 119
|
|
2785
|
+
- 119
|
|
2786
|
+
- 46
|
|
2787
|
+
- 100
|
|
2788
|
+
- 121
|
|
2789
|
+
- 110
|
|
2790
|
+
- 97
|
|
2791
|
+
- 109
|
|
2792
|
+
- 115
|
|
2793
|
+
- 111
|
|
2794
|
+
- 102
|
|
2795
|
+
- 116
|
|
2796
|
+
- 46
|
|
2797
|
+
- 99
|
|
2798
|
+
- 111
|
|
2799
|
+
- 109
|
|
2800
|
+
barcodeFormat: 33554432
|
|
2801
|
+
barcodeFormatString: PDF417
|
|
2802
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2803
|
+
barcodeFormat_2: 0
|
|
2804
|
+
barcodeText: www.dynamsoft.com
|
|
2805
|
+
detailedResult:
|
|
2806
|
+
columns: 3
|
|
2807
|
+
errorCorrectionLevel: 2
|
|
2808
|
+
moduleSize: 4
|
|
2809
|
+
rows: 7
|
|
2810
|
+
localizationResult:
|
|
2811
|
+
ResultPoints:
|
|
2812
|
+
- 153, 1346
|
|
2813
|
+
- 605, 1346
|
|
2814
|
+
- 605, 1486
|
|
2815
|
+
- 153, 1486
|
|
2816
|
+
accompanyingTextBytes: []
|
|
2817
|
+
angle: 0
|
|
2818
|
+
barcodeFormat: 33554432
|
|
2819
|
+
barcodeFormatString: PDF417
|
|
2820
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2821
|
+
barcodeFormat_2: 0
|
|
2822
|
+
confidence: 88
|
|
2823
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2824
|
+
moduleSize: 4
|
|
2825
|
+
pageNumber: 1
|
|
2826
|
+
regionName: ''
|
|
2827
|
+
resultCoordinateType: 1
|
|
2828
|
+
terminatePhase: 32
|
|
2829
|
+
x1: 153
|
|
2830
|
+
x2: 605
|
|
2831
|
+
x3: 605
|
|
2832
|
+
x4: 153
|
|
2833
|
+
y1: 1346
|
|
2834
|
+
y2: 1346
|
|
2835
|
+
y3: 1486
|
|
2836
|
+
y4: 1486
|
|
2837
|
+
results:
|
|
2838
|
+
- accompanyingTextBytes: []
|
|
2839
|
+
barcodeFormat: 33554432
|
|
2840
|
+
barcodeFormatString: PDF417
|
|
2841
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2842
|
+
barcodeFormat_2: 0
|
|
2843
|
+
bytes:
|
|
2844
|
+
- 119
|
|
2845
|
+
- 119
|
|
2846
|
+
- 119
|
|
2847
|
+
- 46
|
|
2848
|
+
- 100
|
|
2849
|
+
- 121
|
|
2850
|
+
- 110
|
|
2851
|
+
- 97
|
|
2852
|
+
- 109
|
|
2853
|
+
- 115
|
|
2854
|
+
- 111
|
|
2855
|
+
- 102
|
|
2856
|
+
- 116
|
|
2857
|
+
- 46
|
|
2858
|
+
- 99
|
|
2859
|
+
- 111
|
|
2860
|
+
- 109
|
|
2861
|
+
clarity: -1
|
|
2862
|
+
confidence: 88
|
|
2863
|
+
deformation: 0
|
|
2864
|
+
resultType: 0
|
|
2865
|
+
- accompanyingTextBytes: []
|
|
2866
|
+
barcodeFormat: 33554432
|
|
2867
|
+
barcodeFormatString: PDF417
|
|
2868
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2869
|
+
barcodeFormat_2: 0
|
|
2870
|
+
bytes:
|
|
2871
|
+
- 119
|
|
2872
|
+
- 119
|
|
2873
|
+
- 119
|
|
2874
|
+
- 46
|
|
2875
|
+
- 100
|
|
2876
|
+
- 121
|
|
2877
|
+
- 110
|
|
2878
|
+
- 97
|
|
2879
|
+
- 109
|
|
2880
|
+
- 115
|
|
2881
|
+
- 111
|
|
2882
|
+
- 102
|
|
2883
|
+
- 116
|
|
2884
|
+
- 46
|
|
2885
|
+
- 99
|
|
2886
|
+
- 111
|
|
2887
|
+
- 109
|
|
2888
|
+
clarity: -1
|
|
2889
|
+
confidence: 88
|
|
2890
|
+
deformation: 0
|
|
2891
|
+
resultType: 1
|
|
2892
|
+
- BarcodeFormat: 67108864
|
|
2893
|
+
BarcodeFormatString: QR_CODE
|
|
2894
|
+
LocalizationResult:
|
|
2895
|
+
ResultPoints:
|
|
2896
|
+
- 838, 1094
|
|
2897
|
+
- 989, 1094
|
|
2898
|
+
- 988, 1244
|
|
2899
|
+
- 839, 1244
|
|
2900
|
+
accompanyingTextBytes: []
|
|
2901
|
+
angle: 0
|
|
2902
|
+
barcodeFormat: 67108864
|
|
2903
|
+
barcodeFormatString: QR_CODE
|
|
2904
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2905
|
+
barcodeFormat_2: 0
|
|
2906
|
+
confidence: 86
|
|
2907
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2908
|
+
moduleSize: 6
|
|
2909
|
+
pageNumber: 1
|
|
2910
|
+
regionName: ''
|
|
2911
|
+
resultCoordinateType: 1
|
|
2912
|
+
terminatePhase: 32
|
|
2913
|
+
x1: 838
|
|
2914
|
+
x2: 989
|
|
2915
|
+
x3: 988
|
|
2916
|
+
x4: 839
|
|
2917
|
+
y1: 1094
|
|
2918
|
+
y2: 1094
|
|
2919
|
+
y3: 1244
|
|
2920
|
+
y4: 1244
|
|
2921
|
+
barcodeBytes:
|
|
2922
|
+
- 119
|
|
2923
|
+
- 119
|
|
2924
|
+
- 119
|
|
2925
|
+
- 46
|
|
2926
|
+
- 100
|
|
2927
|
+
- 121
|
|
2928
|
+
- 110
|
|
2929
|
+
- 97
|
|
2930
|
+
- 109
|
|
2931
|
+
- 115
|
|
2932
|
+
- 111
|
|
2933
|
+
- 102
|
|
2934
|
+
- 116
|
|
2935
|
+
- 46
|
|
2936
|
+
- 99
|
|
2937
|
+
- 111
|
|
2938
|
+
- 109
|
|
2939
|
+
barcodeFormat: 67108864
|
|
2940
|
+
barcodeFormatString: QR_CODE
|
|
2941
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2942
|
+
barcodeFormat_2: 0
|
|
2943
|
+
barcodeText: www.dynamsoft.com
|
|
2944
|
+
detailedResult:
|
|
2945
|
+
columns: 25
|
|
2946
|
+
errorCorrectionLevel: 2
|
|
2947
|
+
model: 2
|
|
2948
|
+
moduleSize: 6
|
|
2949
|
+
rows: 25
|
|
2950
|
+
version: 2
|
|
2951
|
+
localizationResult:
|
|
2952
|
+
ResultPoints:
|
|
2953
|
+
- 838, 1094
|
|
2954
|
+
- 989, 1094
|
|
2955
|
+
- 988, 1244
|
|
2956
|
+
- 839, 1244
|
|
2957
|
+
accompanyingTextBytes: []
|
|
2958
|
+
angle: 0
|
|
2959
|
+
barcodeFormat: 67108864
|
|
2960
|
+
barcodeFormatString: QR_CODE
|
|
2961
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2962
|
+
barcodeFormat_2: 0
|
|
2963
|
+
confidence: 86
|
|
2964
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
2965
|
+
moduleSize: 6
|
|
2966
|
+
pageNumber: 1
|
|
2967
|
+
regionName: ''
|
|
2968
|
+
resultCoordinateType: 1
|
|
2969
|
+
terminatePhase: 32
|
|
2970
|
+
x1: 838
|
|
2971
|
+
x2: 989
|
|
2972
|
+
x3: 988
|
|
2973
|
+
x4: 839
|
|
2974
|
+
y1: 1094
|
|
2975
|
+
y2: 1094
|
|
2976
|
+
y3: 1244
|
|
2977
|
+
y4: 1244
|
|
2978
|
+
results:
|
|
2979
|
+
- accompanyingTextBytes: []
|
|
2980
|
+
barcodeFormat: 67108864
|
|
2981
|
+
barcodeFormatString: QR_CODE
|
|
2982
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
2983
|
+
barcodeFormat_2: 0
|
|
2984
|
+
bytes:
|
|
2985
|
+
- 119
|
|
2986
|
+
- 119
|
|
2987
|
+
- 119
|
|
2988
|
+
- 46
|
|
2989
|
+
- 100
|
|
2990
|
+
- 121
|
|
2991
|
+
- 110
|
|
2992
|
+
- 97
|
|
2993
|
+
- 109
|
|
2994
|
+
- 115
|
|
2995
|
+
- 111
|
|
2996
|
+
- 102
|
|
2997
|
+
- 116
|
|
2998
|
+
- 46
|
|
2999
|
+
- 99
|
|
3000
|
+
- 111
|
|
3001
|
+
- 109
|
|
3002
|
+
clarity: -1
|
|
3003
|
+
confidence: 86
|
|
3004
|
+
deformation: 0
|
|
3005
|
+
resultType: 0
|
|
3006
|
+
- BarcodeFormat: 32
|
|
3007
|
+
BarcodeFormatString: EAN_13
|
|
3008
|
+
LocalizationResult:
|
|
3009
|
+
ResultPoints:
|
|
3010
|
+
- 177, 876
|
|
3011
|
+
- 462, 876
|
|
3012
|
+
- 462, 976
|
|
3013
|
+
- 177, 976
|
|
3014
|
+
accompanyingTextBytes: []
|
|
3015
|
+
angle: 0
|
|
3016
|
+
barcodeFormat: 3147775
|
|
3017
|
+
barcodeFormatString: OneD
|
|
3018
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3019
|
+
barcodeFormat_2: 0
|
|
3020
|
+
confidence: 85
|
|
3021
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3022
|
+
moduleSize: 2
|
|
3023
|
+
pageNumber: 1
|
|
3024
|
+
regionName: ''
|
|
3025
|
+
resultCoordinateType: 1
|
|
3026
|
+
terminatePhase: 32
|
|
3027
|
+
x1: 177
|
|
3028
|
+
x2: 462
|
|
3029
|
+
x3: 462
|
|
3030
|
+
x4: 177
|
|
3031
|
+
y1: 876
|
|
3032
|
+
y2: 876
|
|
3033
|
+
y3: 976
|
|
3034
|
+
y4: 976
|
|
3035
|
+
barcodeBytes:
|
|
3036
|
+
- 49
|
|
3037
|
+
- 50
|
|
3038
|
+
- 51
|
|
3039
|
+
- 52
|
|
3040
|
+
- 53
|
|
3041
|
+
- 54
|
|
3042
|
+
- 55
|
|
3043
|
+
- 56
|
|
3044
|
+
- 57
|
|
3045
|
+
- 48
|
|
3046
|
+
- 49
|
|
3047
|
+
- 50
|
|
3048
|
+
- 56
|
|
3049
|
+
barcodeFormat: 32
|
|
3050
|
+
barcodeFormatString: EAN_13
|
|
3051
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3052
|
+
barcodeFormat_2: 0
|
|
3053
|
+
barcodeText: '1234567890128'
|
|
3054
|
+
detailedResult:
|
|
3055
|
+
checkDigitBytes: []
|
|
3056
|
+
moduleSize: 2
|
|
3057
|
+
startCharsBytes: []
|
|
3058
|
+
stopCharsBytes: []
|
|
3059
|
+
localizationResult:
|
|
3060
|
+
ResultPoints:
|
|
3061
|
+
- 177, 876
|
|
3062
|
+
- 462, 876
|
|
3063
|
+
- 462, 976
|
|
3064
|
+
- 177, 976
|
|
3065
|
+
accompanyingTextBytes: []
|
|
3066
|
+
angle: 0
|
|
3067
|
+
barcodeFormat: 3147775
|
|
3068
|
+
barcodeFormatString: OneD
|
|
3069
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3070
|
+
barcodeFormat_2: 0
|
|
3071
|
+
confidence: 85
|
|
3072
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3073
|
+
moduleSize: 2
|
|
3074
|
+
pageNumber: 1
|
|
3075
|
+
regionName: ''
|
|
3076
|
+
resultCoordinateType: 1
|
|
3077
|
+
terminatePhase: 32
|
|
3078
|
+
x1: 177
|
|
3079
|
+
x2: 462
|
|
3080
|
+
x3: 462
|
|
3081
|
+
x4: 177
|
|
3082
|
+
y1: 876
|
|
3083
|
+
y2: 876
|
|
3084
|
+
y3: 976
|
|
3085
|
+
y4: 976
|
|
3086
|
+
results:
|
|
3087
|
+
- accompanyingTextBytes: []
|
|
3088
|
+
barcodeFormat: 32
|
|
3089
|
+
barcodeFormatString: EAN_13
|
|
3090
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3091
|
+
barcodeFormat_2: 0
|
|
3092
|
+
bytes:
|
|
3093
|
+
- 49
|
|
3094
|
+
- 50
|
|
3095
|
+
- 51
|
|
3096
|
+
- 52
|
|
3097
|
+
- 53
|
|
3098
|
+
- 54
|
|
3099
|
+
- 55
|
|
3100
|
+
- 56
|
|
3101
|
+
- 57
|
|
3102
|
+
- 48
|
|
3103
|
+
- 49
|
|
3104
|
+
- 50
|
|
3105
|
+
- 56
|
|
3106
|
+
clarity: -1
|
|
3107
|
+
confidence: 85
|
|
3108
|
+
deformation: 0
|
|
3109
|
+
resultType: 0
|
|
3110
|
+
- BarcodeFormat: 0
|
|
3111
|
+
BarcodeFormatString: DotCode
|
|
3112
|
+
LocalizationResult:
|
|
3113
|
+
ResultPoints:
|
|
3114
|
+
- 886, 897
|
|
3115
|
+
- 1018, 897
|
|
3116
|
+
- 1018, 985
|
|
3117
|
+
- 886, 985
|
|
3118
|
+
accompanyingTextBytes: []
|
|
3119
|
+
angle: 0
|
|
3120
|
+
barcodeFormat: 0
|
|
3121
|
+
barcodeFormatString: DotCode
|
|
3122
|
+
barcodeFormatString_2: DotCode
|
|
3123
|
+
barcodeFormat_2: 2
|
|
3124
|
+
confidence: 82
|
|
3125
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3126
|
+
moduleSize: 4
|
|
3127
|
+
pageNumber: 1
|
|
3128
|
+
regionName: ''
|
|
3129
|
+
resultCoordinateType: 1
|
|
3130
|
+
terminatePhase: 32
|
|
3131
|
+
x1: 886
|
|
3132
|
+
x2: 1018
|
|
3133
|
+
x3: 1018
|
|
3134
|
+
x4: 886
|
|
3135
|
+
y1: 897
|
|
3136
|
+
y2: 897
|
|
3137
|
+
y3: 985
|
|
3138
|
+
y4: 985
|
|
3139
|
+
barcodeBytes:
|
|
3140
|
+
- 68
|
|
3141
|
+
- 121
|
|
3142
|
+
- 110
|
|
3143
|
+
- 97
|
|
3144
|
+
- 109
|
|
3145
|
+
- 115
|
|
3146
|
+
- 111
|
|
3147
|
+
- 102
|
|
3148
|
+
- 116
|
|
3149
|
+
- 32
|
|
3150
|
+
- 66
|
|
3151
|
+
- 97
|
|
3152
|
+
- 114
|
|
3153
|
+
- 99
|
|
3154
|
+
- 111
|
|
3155
|
+
- 100
|
|
3156
|
+
- 101
|
|
3157
|
+
- 32
|
|
3158
|
+
- 82
|
|
3159
|
+
- 101
|
|
3160
|
+
- 97
|
|
3161
|
+
- 100
|
|
3162
|
+
- 101
|
|
3163
|
+
- 114
|
|
3164
|
+
barcodeFormat: 0
|
|
3165
|
+
barcodeFormatString: DotCode
|
|
3166
|
+
barcodeFormatString_2: DotCode
|
|
3167
|
+
barcodeFormat_2: 2
|
|
3168
|
+
barcodeText: Dynamsoft Barcode Reader
|
|
3169
|
+
detailedResult: null
|
|
3170
|
+
localizationResult:
|
|
3171
|
+
ResultPoints:
|
|
3172
|
+
- 886, 897
|
|
3173
|
+
- 1018, 897
|
|
3174
|
+
- 1018, 985
|
|
3175
|
+
- 886, 985
|
|
3176
|
+
accompanyingTextBytes: []
|
|
3177
|
+
angle: 0
|
|
3178
|
+
barcodeFormat: 0
|
|
3179
|
+
barcodeFormatString: DotCode
|
|
3180
|
+
barcodeFormatString_2: DotCode
|
|
3181
|
+
barcodeFormat_2: 2
|
|
3182
|
+
confidence: 82
|
|
3183
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3184
|
+
moduleSize: 4
|
|
3185
|
+
pageNumber: 1
|
|
3186
|
+
regionName: ''
|
|
3187
|
+
resultCoordinateType: 1
|
|
3188
|
+
terminatePhase: 32
|
|
3189
|
+
x1: 886
|
|
3190
|
+
x2: 1018
|
|
3191
|
+
x3: 1018
|
|
3192
|
+
x4: 886
|
|
3193
|
+
y1: 897
|
|
3194
|
+
y2: 897
|
|
3195
|
+
y3: 985
|
|
3196
|
+
y4: 985
|
|
3197
|
+
results:
|
|
3198
|
+
- accompanyingTextBytes: []
|
|
3199
|
+
barcodeFormat: 0
|
|
3200
|
+
barcodeFormatString: DotCode
|
|
3201
|
+
barcodeFormatString_2: DotCode
|
|
3202
|
+
barcodeFormat_2: 2
|
|
3203
|
+
bytes:
|
|
3204
|
+
- 68
|
|
3205
|
+
- 121
|
|
3206
|
+
- 110
|
|
3207
|
+
- 97
|
|
3208
|
+
- 109
|
|
3209
|
+
- 115
|
|
3210
|
+
- 111
|
|
3211
|
+
- 102
|
|
3212
|
+
- 116
|
|
3213
|
+
- 32
|
|
3214
|
+
- 66
|
|
3215
|
+
- 97
|
|
3216
|
+
- 114
|
|
3217
|
+
- 99
|
|
3218
|
+
- 111
|
|
3219
|
+
- 100
|
|
3220
|
+
- 101
|
|
3221
|
+
- 32
|
|
3222
|
+
- 82
|
|
3223
|
+
- 101
|
|
3224
|
+
- 97
|
|
3225
|
+
- 100
|
|
3226
|
+
- 101
|
|
3227
|
+
- 114
|
|
3228
|
+
clarity: -1
|
|
3229
|
+
confidence: 82
|
|
3230
|
+
deformation: 0
|
|
3231
|
+
resultType: 0
|
|
3232
|
+
- BarcodeFormat: 536870912
|
|
3233
|
+
BarcodeFormatString: Maxicode
|
|
3234
|
+
LocalizationResult:
|
|
3235
|
+
ResultPoints:
|
|
3236
|
+
- 1396, 1327
|
|
3237
|
+
- 1595, 1327
|
|
3238
|
+
- 1595, 1525
|
|
3239
|
+
- 1396, 1525
|
|
3240
|
+
accompanyingTextBytes: []
|
|
3241
|
+
angle: 0
|
|
3242
|
+
barcodeFormat: 536870912
|
|
3243
|
+
barcodeFormatString: Maxicode
|
|
3244
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3245
|
+
barcodeFormat_2: 0
|
|
3246
|
+
confidence: 81
|
|
3247
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3248
|
+
moduleSize: 7
|
|
3249
|
+
pageNumber: 1
|
|
3250
|
+
regionName: ''
|
|
3251
|
+
resultCoordinateType: 1
|
|
3252
|
+
terminatePhase: 32
|
|
3253
|
+
x1: 1396
|
|
3254
|
+
x2: 1595
|
|
3255
|
+
x3: 1595
|
|
3256
|
+
x4: 1396
|
|
3257
|
+
y1: 1327
|
|
3258
|
+
y2: 1327
|
|
3259
|
+
y3: 1525
|
|
3260
|
+
y4: 1525
|
|
3261
|
+
barcodeBytes:
|
|
3262
|
+
- 77
|
|
3263
|
+
- 97
|
|
3264
|
+
- 120
|
|
3265
|
+
- 105
|
|
3266
|
+
- 99
|
|
3267
|
+
- 111
|
|
3268
|
+
- 100
|
|
3269
|
+
- 101
|
|
3270
|
+
- 32
|
|
3271
|
+
- 102
|
|
3272
|
+
- 114
|
|
3273
|
+
- 111
|
|
3274
|
+
- 109
|
|
3275
|
+
- 32
|
|
3276
|
+
- 68
|
|
3277
|
+
- 121
|
|
3278
|
+
- 110
|
|
3279
|
+
- 97
|
|
3280
|
+
- 109
|
|
3281
|
+
- 115
|
|
3282
|
+
- 111
|
|
3283
|
+
- 102
|
|
3284
|
+
- 116
|
|
3285
|
+
barcodeFormat: 536870912
|
|
3286
|
+
barcodeFormatString: Maxicode
|
|
3287
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3288
|
+
barcodeFormat_2: 0
|
|
3289
|
+
barcodeText: Maxicode from Dynamsoft
|
|
3290
|
+
detailedResult: null
|
|
3291
|
+
localizationResult:
|
|
3292
|
+
ResultPoints:
|
|
3293
|
+
- 1396, 1327
|
|
3294
|
+
- 1595, 1327
|
|
3295
|
+
- 1595, 1525
|
|
3296
|
+
- 1396, 1525
|
|
3297
|
+
accompanyingTextBytes: []
|
|
3298
|
+
angle: 0
|
|
3299
|
+
barcodeFormat: 536870912
|
|
3300
|
+
barcodeFormatString: Maxicode
|
|
3301
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3302
|
+
barcodeFormat_2: 0
|
|
3303
|
+
confidence: 81
|
|
3304
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3305
|
+
moduleSize: 7
|
|
3306
|
+
pageNumber: 1
|
|
3307
|
+
regionName: ''
|
|
3308
|
+
resultCoordinateType: 1
|
|
3309
|
+
terminatePhase: 32
|
|
3310
|
+
x1: 1396
|
|
3311
|
+
x2: 1595
|
|
3312
|
+
x3: 1595
|
|
3313
|
+
x4: 1396
|
|
3314
|
+
y1: 1327
|
|
3315
|
+
y2: 1327
|
|
3316
|
+
y3: 1525
|
|
3317
|
+
y4: 1525
|
|
3318
|
+
results:
|
|
3319
|
+
- accompanyingTextBytes: []
|
|
3320
|
+
barcodeFormat: 536870912
|
|
3321
|
+
barcodeFormatString: Maxicode
|
|
3322
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3323
|
+
barcodeFormat_2: 0
|
|
3324
|
+
bytes:
|
|
3325
|
+
- 77
|
|
3326
|
+
- 97
|
|
3327
|
+
- 120
|
|
3328
|
+
- 105
|
|
3329
|
+
- 99
|
|
3330
|
+
- 111
|
|
3331
|
+
- 100
|
|
3332
|
+
- 101
|
|
3333
|
+
- 32
|
|
3334
|
+
- 102
|
|
3335
|
+
- 114
|
|
3336
|
+
- 111
|
|
3337
|
+
- 109
|
|
3338
|
+
- 32
|
|
3339
|
+
- 68
|
|
3340
|
+
- 121
|
|
3341
|
+
- 110
|
|
3342
|
+
- 97
|
|
3343
|
+
- 109
|
|
3344
|
+
- 115
|
|
3345
|
+
- 111
|
|
3346
|
+
- 102
|
|
3347
|
+
- 116
|
|
3348
|
+
clarity: -1
|
|
3349
|
+
confidence: 81
|
|
3350
|
+
deformation: 0
|
|
3351
|
+
resultType: 0
|
|
3352
|
+
- BarcodeFormat: 512
|
|
3353
|
+
BarcodeFormatString: INDUSTRIAL_25
|
|
3354
|
+
LocalizationResult:
|
|
3355
|
+
ResultPoints:
|
|
3356
|
+
- 157, 1109
|
|
3357
|
+
- 672, 1109
|
|
3358
|
+
- 672, 1229
|
|
3359
|
+
- 157, 1229
|
|
3360
|
+
accompanyingTextBytes: []
|
|
3361
|
+
angle: 0
|
|
3362
|
+
barcodeFormat: 3147775
|
|
3363
|
+
barcodeFormatString: OneD
|
|
3364
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3365
|
+
barcodeFormat_2: 0
|
|
3366
|
+
confidence: 70
|
|
3367
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3368
|
+
moduleSize: 5
|
|
3369
|
+
pageNumber: 1
|
|
3370
|
+
regionName: ''
|
|
3371
|
+
resultCoordinateType: 1
|
|
3372
|
+
terminatePhase: 32
|
|
3373
|
+
x1: 157
|
|
3374
|
+
x2: 672
|
|
3375
|
+
x3: 672
|
|
3376
|
+
x4: 157
|
|
3377
|
+
y1: 1109
|
|
3378
|
+
y2: 1109
|
|
3379
|
+
y3: 1229
|
|
3380
|
+
y4: 1229
|
|
3381
|
+
barcodeBytes:
|
|
3382
|
+
- 49
|
|
3383
|
+
- 50
|
|
3384
|
+
- 51
|
|
3385
|
+
- 52
|
|
3386
|
+
- 53
|
|
3387
|
+
- 54
|
|
3388
|
+
barcodeFormat: 512
|
|
3389
|
+
barcodeFormatString: INDUSTRIAL_25
|
|
3390
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3391
|
+
barcodeFormat_2: 0
|
|
3392
|
+
barcodeText: '123456'
|
|
3393
|
+
detailedResult:
|
|
3394
|
+
checkDigitBytes: []
|
|
3395
|
+
moduleSize: 5
|
|
3396
|
+
startCharsBytes: []
|
|
3397
|
+
stopCharsBytes: []
|
|
3398
|
+
localizationResult:
|
|
3399
|
+
ResultPoints:
|
|
3400
|
+
- 157, 1109
|
|
3401
|
+
- 672, 1109
|
|
3402
|
+
- 672, 1229
|
|
3403
|
+
- 157, 1229
|
|
3404
|
+
accompanyingTextBytes: []
|
|
3405
|
+
angle: 0
|
|
3406
|
+
barcodeFormat: 3147775
|
|
3407
|
+
barcodeFormatString: OneD
|
|
3408
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3409
|
+
barcodeFormat_2: 0
|
|
3410
|
+
confidence: 70
|
|
3411
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3412
|
+
moduleSize: 5
|
|
3413
|
+
pageNumber: 1
|
|
3414
|
+
regionName: ''
|
|
3415
|
+
resultCoordinateType: 1
|
|
3416
|
+
terminatePhase: 32
|
|
3417
|
+
x1: 157
|
|
3418
|
+
x2: 672
|
|
3419
|
+
x3: 672
|
|
3420
|
+
x4: 157
|
|
3421
|
+
y1: 1109
|
|
3422
|
+
y2: 1109
|
|
3423
|
+
y3: 1229
|
|
3424
|
+
y4: 1229
|
|
3425
|
+
results:
|
|
3426
|
+
- accompanyingTextBytes: []
|
|
3427
|
+
barcodeFormat: 512
|
|
3428
|
+
barcodeFormatString: INDUSTRIAL_25
|
|
3429
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3430
|
+
barcodeFormat_2: 0
|
|
3431
|
+
bytes:
|
|
3432
|
+
- 49
|
|
3433
|
+
- 50
|
|
3434
|
+
- 51
|
|
3435
|
+
- 52
|
|
3436
|
+
- 53
|
|
3437
|
+
- 54
|
|
3438
|
+
clarity: -1
|
|
3439
|
+
confidence: 70
|
|
3440
|
+
deformation: 0
|
|
3441
|
+
resultType: 0
|
|
3442
|
+
- BarcodeFormat: 16
|
|
3443
|
+
BarcodeFormatString: ITF
|
|
3444
|
+
LocalizationResult:
|
|
3445
|
+
ResultPoints:
|
|
3446
|
+
- 935, 469
|
|
3447
|
+
- 1233, 469
|
|
3448
|
+
- 1233, 565
|
|
3449
|
+
- 935, 565
|
|
3450
|
+
accompanyingTextBytes: []
|
|
3451
|
+
angle: 0
|
|
3452
|
+
barcodeFormat: 3147775
|
|
3453
|
+
barcodeFormatString: OneD
|
|
3454
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3455
|
+
barcodeFormat_2: 0
|
|
3456
|
+
confidence: 68
|
|
3457
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3458
|
+
moduleSize: 3
|
|
3459
|
+
pageNumber: 1
|
|
3460
|
+
regionName: ''
|
|
3461
|
+
resultCoordinateType: 1
|
|
3462
|
+
terminatePhase: 32
|
|
3463
|
+
x1: 935
|
|
3464
|
+
x2: 1233
|
|
3465
|
+
x3: 1233
|
|
3466
|
+
x4: 935
|
|
3467
|
+
y1: 469
|
|
3468
|
+
y2: 469
|
|
3469
|
+
y3: 565
|
|
3470
|
+
y4: 565
|
|
3471
|
+
barcodeBytes:
|
|
3472
|
+
- 48
|
|
3473
|
+
- 48
|
|
3474
|
+
- 49
|
|
3475
|
+
- 50
|
|
3476
|
+
- 51
|
|
3477
|
+
- 52
|
|
3478
|
+
- 53
|
|
3479
|
+
- 54
|
|
3480
|
+
barcodeFormat: 16
|
|
3481
|
+
barcodeFormatString: ITF
|
|
3482
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3483
|
+
barcodeFormat_2: 0
|
|
3484
|
+
barcodeText: '00123456'
|
|
3485
|
+
detailedResult:
|
|
3486
|
+
checkDigitBytes: []
|
|
3487
|
+
moduleSize: 3
|
|
3488
|
+
startCharsBytes: []
|
|
3489
|
+
stopCharsBytes: []
|
|
3490
|
+
localizationResult:
|
|
3491
|
+
ResultPoints:
|
|
3492
|
+
- 935, 469
|
|
3493
|
+
- 1233, 469
|
|
3494
|
+
- 1233, 565
|
|
3495
|
+
- 935, 565
|
|
3496
|
+
accompanyingTextBytes: []
|
|
3497
|
+
angle: 0
|
|
3498
|
+
barcodeFormat: 3147775
|
|
3499
|
+
barcodeFormatString: OneD
|
|
3500
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3501
|
+
barcodeFormat_2: 0
|
|
3502
|
+
confidence: 68
|
|
3503
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3504
|
+
moduleSize: 3
|
|
3505
|
+
pageNumber: 1
|
|
3506
|
+
regionName: ''
|
|
3507
|
+
resultCoordinateType: 1
|
|
3508
|
+
terminatePhase: 32
|
|
3509
|
+
x1: 935
|
|
3510
|
+
x2: 1233
|
|
3511
|
+
x3: 1233
|
|
3512
|
+
x4: 935
|
|
3513
|
+
y1: 469
|
|
3514
|
+
y2: 469
|
|
3515
|
+
y3: 565
|
|
3516
|
+
y4: 565
|
|
3517
|
+
results:
|
|
3518
|
+
- accompanyingTextBytes: []
|
|
3519
|
+
barcodeFormat: 16
|
|
3520
|
+
barcodeFormatString: ITF
|
|
3521
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3522
|
+
barcodeFormat_2: 0
|
|
3523
|
+
bytes:
|
|
3524
|
+
- 48
|
|
3525
|
+
- 48
|
|
3526
|
+
- 49
|
|
3527
|
+
- 50
|
|
3528
|
+
- 51
|
|
3529
|
+
- 52
|
|
3530
|
+
- 53
|
|
3531
|
+
- 54
|
|
3532
|
+
clarity: -1
|
|
3533
|
+
confidence: 68
|
|
3534
|
+
deformation: 0
|
|
3535
|
+
resultType: 0
|
|
3536
|
+
- BarcodeFormat: 128
|
|
3537
|
+
BarcodeFormatString: UPC_A
|
|
3538
|
+
LocalizationResult:
|
|
3539
|
+
ResultPoints:
|
|
3540
|
+
- 752, 649
|
|
3541
|
+
- 1061, 649
|
|
3542
|
+
- 1061, 767
|
|
3543
|
+
- 752, 767
|
|
3544
|
+
accompanyingTextBytes: []
|
|
3545
|
+
angle: 0
|
|
3546
|
+
barcodeFormat: 3147775
|
|
3547
|
+
barcodeFormatString: OneD
|
|
3548
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3549
|
+
barcodeFormat_2: 0
|
|
3550
|
+
confidence: 61
|
|
3551
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3552
|
+
moduleSize: 3
|
|
3553
|
+
pageNumber: 1
|
|
3554
|
+
regionName: ''
|
|
3555
|
+
resultCoordinateType: 1
|
|
3556
|
+
terminatePhase: 32
|
|
3557
|
+
x1: 752
|
|
3558
|
+
x2: 1061
|
|
3559
|
+
x3: 1061
|
|
3560
|
+
x4: 752
|
|
3561
|
+
y1: 649
|
|
3562
|
+
y2: 649
|
|
3563
|
+
y3: 767
|
|
3564
|
+
y4: 767
|
|
3565
|
+
barcodeBytes:
|
|
3566
|
+
- 48
|
|
3567
|
+
- 49
|
|
3568
|
+
- 50
|
|
3569
|
+
- 51
|
|
3570
|
+
- 52
|
|
3571
|
+
- 53
|
|
3572
|
+
- 54
|
|
3573
|
+
- 55
|
|
3574
|
+
- 56
|
|
3575
|
+
- 57
|
|
3576
|
+
- 48
|
|
3577
|
+
- 53
|
|
3578
|
+
barcodeFormat: 128
|
|
3579
|
+
barcodeFormatString: UPC_A
|
|
3580
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3581
|
+
barcodeFormat_2: 0
|
|
3582
|
+
barcodeText: '012345678905'
|
|
3583
|
+
detailedResult:
|
|
3584
|
+
checkDigitBytes: []
|
|
3585
|
+
moduleSize: 3
|
|
3586
|
+
startCharsBytes: []
|
|
3587
|
+
stopCharsBytes: []
|
|
3588
|
+
localizationResult:
|
|
3589
|
+
ResultPoints:
|
|
3590
|
+
- 752, 649
|
|
3591
|
+
- 1061, 649
|
|
3592
|
+
- 1061, 767
|
|
3593
|
+
- 752, 767
|
|
3594
|
+
accompanyingTextBytes: []
|
|
3595
|
+
angle: 0
|
|
3596
|
+
barcodeFormat: 3147775
|
|
3597
|
+
barcodeFormatString: OneD
|
|
3598
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3599
|
+
barcodeFormat_2: 0
|
|
3600
|
+
confidence: 61
|
|
3601
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3602
|
+
moduleSize: 3
|
|
3603
|
+
pageNumber: 1
|
|
3604
|
+
regionName: ''
|
|
3605
|
+
resultCoordinateType: 1
|
|
3606
|
+
terminatePhase: 32
|
|
3607
|
+
x1: 752
|
|
3608
|
+
x2: 1061
|
|
3609
|
+
x3: 1061
|
|
3610
|
+
x4: 752
|
|
3611
|
+
y1: 649
|
|
3612
|
+
y2: 649
|
|
3613
|
+
y3: 767
|
|
3614
|
+
y4: 767
|
|
3615
|
+
results:
|
|
3616
|
+
- accompanyingTextBytes: []
|
|
3617
|
+
barcodeFormat: 128
|
|
3618
|
+
barcodeFormatString: UPC_A
|
|
3619
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3620
|
+
barcodeFormat_2: 0
|
|
3621
|
+
bytes:
|
|
3622
|
+
- 48
|
|
3623
|
+
- 49
|
|
3624
|
+
- 50
|
|
3625
|
+
- 51
|
|
3626
|
+
- 52
|
|
3627
|
+
- 53
|
|
3628
|
+
- 54
|
|
3629
|
+
- 55
|
|
3630
|
+
- 56
|
|
3631
|
+
- 57
|
|
3632
|
+
- 48
|
|
3633
|
+
- 53
|
|
3634
|
+
clarity: -1
|
|
3635
|
+
confidence: 61
|
|
3636
|
+
deformation: 0
|
|
3637
|
+
resultType: 0
|
|
3638
|
+
- BarcodeFormat: 8
|
|
3639
|
+
BarcodeFormatString: CODABAR
|
|
3640
|
+
LocalizationResult:
|
|
3641
|
+
ResultPoints:
|
|
3642
|
+
- 183, 465
|
|
3643
|
+
- 478, 464
|
|
3644
|
+
- 478, 560
|
|
3645
|
+
- 183, 559
|
|
3646
|
+
accompanyingTextBytes: []
|
|
3647
|
+
angle: 0
|
|
3648
|
+
barcodeFormat: 3147775
|
|
3649
|
+
barcodeFormatString: OneD
|
|
3650
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3651
|
+
barcodeFormat_2: 0
|
|
3652
|
+
confidence: 59
|
|
3653
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3654
|
+
moduleSize: 2
|
|
3655
|
+
pageNumber: 1
|
|
3656
|
+
regionName: ''
|
|
3657
|
+
resultCoordinateType: 1
|
|
3658
|
+
terminatePhase: 32
|
|
3659
|
+
x1: 183
|
|
3660
|
+
x2: 478
|
|
3661
|
+
x3: 478
|
|
3662
|
+
x4: 183
|
|
3663
|
+
y1: 465
|
|
3664
|
+
y2: 464
|
|
3665
|
+
y3: 560
|
|
3666
|
+
y4: 559
|
|
3667
|
+
barcodeBytes:
|
|
3668
|
+
- 48
|
|
3669
|
+
- 49
|
|
3670
|
+
- 50
|
|
3671
|
+
- 51
|
|
3672
|
+
- 52
|
|
3673
|
+
- 53
|
|
3674
|
+
barcodeFormat: 8
|
|
3675
|
+
barcodeFormatString: CODABAR
|
|
3676
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3677
|
+
barcodeFormat_2: 0
|
|
3678
|
+
barcodeText: '012345'
|
|
3679
|
+
detailedResult:
|
|
3680
|
+
checkDigitBytes: []
|
|
3681
|
+
moduleSize: 2
|
|
3682
|
+
startCharsBytes:
|
|
3683
|
+
- 67
|
|
3684
|
+
stopCharsBytes:
|
|
3685
|
+
- 68
|
|
3686
|
+
localizationResult:
|
|
3687
|
+
ResultPoints:
|
|
3688
|
+
- 183, 465
|
|
3689
|
+
- 478, 464
|
|
3690
|
+
- 478, 560
|
|
3691
|
+
- 183, 559
|
|
3692
|
+
accompanyingTextBytes: []
|
|
3693
|
+
angle: 0
|
|
3694
|
+
barcodeFormat: 3147775
|
|
3695
|
+
barcodeFormatString: OneD
|
|
3696
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3697
|
+
barcodeFormat_2: 0
|
|
3698
|
+
confidence: 59
|
|
3699
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3700
|
+
moduleSize: 2
|
|
3701
|
+
pageNumber: 1
|
|
3702
|
+
regionName: ''
|
|
3703
|
+
resultCoordinateType: 1
|
|
3704
|
+
terminatePhase: 32
|
|
3705
|
+
x1: 183
|
|
3706
|
+
x2: 478
|
|
3707
|
+
x3: 478
|
|
3708
|
+
x4: 183
|
|
3709
|
+
y1: 465
|
|
3710
|
+
y2: 464
|
|
3711
|
+
y3: 560
|
|
3712
|
+
y4: 559
|
|
3713
|
+
results:
|
|
3714
|
+
- accompanyingTextBytes: []
|
|
3715
|
+
barcodeFormat: 8
|
|
3716
|
+
barcodeFormatString: CODABAR
|
|
3717
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3718
|
+
barcodeFormat_2: 0
|
|
3719
|
+
bytes:
|
|
3720
|
+
- 48
|
|
3721
|
+
- 49
|
|
3722
|
+
- 50
|
|
3723
|
+
- 51
|
|
3724
|
+
- 52
|
|
3725
|
+
- 53
|
|
3726
|
+
clarity: -1
|
|
3727
|
+
confidence: 59
|
|
3728
|
+
deformation: 0
|
|
3729
|
+
resultType: 0
|
|
3730
|
+
- BarcodeFormat: 1024
|
|
3731
|
+
BarcodeFormatString: CODE_39_EXTENDED
|
|
3732
|
+
LocalizationResult:
|
|
3733
|
+
ResultPoints:
|
|
3734
|
+
- 183, 272
|
|
3735
|
+
- 564, 273
|
|
3736
|
+
- 564, 373
|
|
3737
|
+
- 183, 372
|
|
3738
|
+
accompanyingTextBytes: []
|
|
3739
|
+
angle: 0
|
|
3740
|
+
barcodeFormat: 3147775
|
|
3741
|
+
barcodeFormatString: OneD
|
|
3742
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3743
|
+
barcodeFormat_2: 0
|
|
3744
|
+
confidence: 57
|
|
3745
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3746
|
+
moduleSize: 3
|
|
3747
|
+
pageNumber: 1
|
|
3748
|
+
regionName: ''
|
|
3749
|
+
resultCoordinateType: 1
|
|
3750
|
+
terminatePhase: 32
|
|
3751
|
+
x1: 183
|
|
3752
|
+
x2: 564
|
|
3753
|
+
x3: 564
|
|
3754
|
+
x4: 183
|
|
3755
|
+
y1: 272
|
|
3756
|
+
y2: 273
|
|
3757
|
+
y3: 373
|
|
3758
|
+
y4: 372
|
|
3759
|
+
barcodeBytes:
|
|
3760
|
+
- 67
|
|
3761
|
+
- 79
|
|
3762
|
+
- 68
|
|
3763
|
+
- 69
|
|
3764
|
+
- 51
|
|
3765
|
+
- 57
|
|
3766
|
+
barcodeFormat: 1024
|
|
3767
|
+
barcodeFormatString: CODE_39_EXTENDED
|
|
3768
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3769
|
+
barcodeFormat_2: 0
|
|
3770
|
+
barcodeText: CODE39
|
|
3771
|
+
detailedResult:
|
|
3772
|
+
checkDigitBytes: []
|
|
3773
|
+
moduleSize: 3
|
|
3774
|
+
startCharsBytes:
|
|
3775
|
+
- 42
|
|
3776
|
+
stopCharsBytes:
|
|
3777
|
+
- 42
|
|
3778
|
+
localizationResult:
|
|
3779
|
+
ResultPoints:
|
|
3780
|
+
- 183, 272
|
|
3781
|
+
- 564, 273
|
|
3782
|
+
- 564, 373
|
|
3783
|
+
- 183, 372
|
|
3784
|
+
accompanyingTextBytes: []
|
|
3785
|
+
angle: 0
|
|
3786
|
+
barcodeFormat: 3147775
|
|
3787
|
+
barcodeFormatString: OneD
|
|
3788
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3789
|
+
barcodeFormat_2: 0
|
|
3790
|
+
confidence: 57
|
|
3791
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3792
|
+
moduleSize: 3
|
|
3793
|
+
pageNumber: 1
|
|
3794
|
+
regionName: ''
|
|
3795
|
+
resultCoordinateType: 1
|
|
3796
|
+
terminatePhase: 32
|
|
3797
|
+
x1: 183
|
|
3798
|
+
x2: 564
|
|
3799
|
+
x3: 564
|
|
3800
|
+
x4: 183
|
|
3801
|
+
y1: 272
|
|
3802
|
+
y2: 273
|
|
3803
|
+
y3: 373
|
|
3804
|
+
y4: 372
|
|
3805
|
+
results:
|
|
3806
|
+
- accompanyingTextBytes: []
|
|
3807
|
+
barcodeFormat: 1024
|
|
3808
|
+
barcodeFormatString: CODE_39_EXTENDED
|
|
3809
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3810
|
+
barcodeFormat_2: 0
|
|
3811
|
+
bytes:
|
|
3812
|
+
- 67
|
|
3813
|
+
- 79
|
|
3814
|
+
- 68
|
|
3815
|
+
- 69
|
|
3816
|
+
- 51
|
|
3817
|
+
- 57
|
|
3818
|
+
clarity: -1
|
|
3819
|
+
confidence: 57
|
|
3820
|
+
deformation: 0
|
|
3821
|
+
resultType: 0
|
|
3822
|
+
- BarcodeFormat: 64
|
|
3823
|
+
BarcodeFormatString: EAN_8
|
|
3824
|
+
LocalizationResult:
|
|
3825
|
+
ResultPoints:
|
|
3826
|
+
- 579, 467
|
|
3827
|
+
- 780, 467
|
|
3828
|
+
- 780, 549
|
|
3829
|
+
- 579, 549
|
|
3830
|
+
accompanyingTextBytes: []
|
|
3831
|
+
angle: 0
|
|
3832
|
+
barcodeFormat: 3147775
|
|
3833
|
+
barcodeFormatString: OneD
|
|
3834
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3835
|
+
barcodeFormat_2: 0
|
|
3836
|
+
confidence: 56
|
|
3837
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3838
|
+
moduleSize: 3
|
|
3839
|
+
pageNumber: 1
|
|
3840
|
+
regionName: ''
|
|
3841
|
+
resultCoordinateType: 1
|
|
3842
|
+
terminatePhase: 32
|
|
3843
|
+
x1: 579
|
|
3844
|
+
x2: 780
|
|
3845
|
+
x3: 780
|
|
3846
|
+
x4: 579
|
|
3847
|
+
y1: 467
|
|
3848
|
+
y2: 467
|
|
3849
|
+
y3: 549
|
|
3850
|
+
y4: 549
|
|
3851
|
+
barcodeBytes:
|
|
3852
|
+
- 48
|
|
3853
|
+
- 49
|
|
3854
|
+
- 50
|
|
3855
|
+
- 51
|
|
3856
|
+
- 52
|
|
3857
|
+
- 53
|
|
3858
|
+
- 54
|
|
3859
|
+
- 53
|
|
3860
|
+
barcodeFormat: 64
|
|
3861
|
+
barcodeFormatString: EAN_8
|
|
3862
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3863
|
+
barcodeFormat_2: 0
|
|
3864
|
+
barcodeText: '01234565'
|
|
3865
|
+
detailedResult:
|
|
3866
|
+
checkDigitBytes: []
|
|
3867
|
+
moduleSize: 3
|
|
3868
|
+
startCharsBytes: []
|
|
3869
|
+
stopCharsBytes: []
|
|
3870
|
+
localizationResult:
|
|
3871
|
+
ResultPoints:
|
|
3872
|
+
- 579, 467
|
|
3873
|
+
- 780, 467
|
|
3874
|
+
- 780, 549
|
|
3875
|
+
- 579, 549
|
|
3876
|
+
accompanyingTextBytes: []
|
|
3877
|
+
angle: 0
|
|
3878
|
+
barcodeFormat: 3147775
|
|
3879
|
+
barcodeFormatString: OneD
|
|
3880
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3881
|
+
barcodeFormat_2: 0
|
|
3882
|
+
confidence: 56
|
|
3883
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3884
|
+
moduleSize: 3
|
|
3885
|
+
pageNumber: 1
|
|
3886
|
+
regionName: ''
|
|
3887
|
+
resultCoordinateType: 1
|
|
3888
|
+
terminatePhase: 32
|
|
3889
|
+
x1: 579
|
|
3890
|
+
x2: 780
|
|
3891
|
+
x3: 780
|
|
3892
|
+
x4: 579
|
|
3893
|
+
y1: 467
|
|
3894
|
+
y2: 467
|
|
3895
|
+
y3: 549
|
|
3896
|
+
y4: 549
|
|
3897
|
+
results:
|
|
3898
|
+
- accompanyingTextBytes: []
|
|
3899
|
+
barcodeFormat: 64
|
|
3900
|
+
barcodeFormatString: EAN_8
|
|
3901
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3902
|
+
barcodeFormat_2: 0
|
|
3903
|
+
bytes:
|
|
3904
|
+
- 48
|
|
3905
|
+
- 49
|
|
3906
|
+
- 50
|
|
3907
|
+
- 51
|
|
3908
|
+
- 52
|
|
3909
|
+
- 53
|
|
3910
|
+
- 54
|
|
3911
|
+
- 53
|
|
3912
|
+
clarity: -1
|
|
3913
|
+
confidence: 56
|
|
3914
|
+
deformation: 0
|
|
3915
|
+
resultType: 0
|
|
3916
|
+
- BarcodeFormat: 262144
|
|
3917
|
+
BarcodeFormatString: PatchCode
|
|
3918
|
+
LocalizationResult:
|
|
3919
|
+
ResultPoints:
|
|
3920
|
+
- 0, 0
|
|
3921
|
+
- 2641, 0
|
|
3922
|
+
- 2641, 1721
|
|
3923
|
+
- 0, 1721
|
|
3924
|
+
accompanyingTextBytes: []
|
|
3925
|
+
angle: 0
|
|
3926
|
+
barcodeFormat: 262144
|
|
3927
|
+
barcodeFormatString: PatchCode
|
|
3928
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3929
|
+
barcodeFormat_2: 0
|
|
3930
|
+
confidence: 41
|
|
3931
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3932
|
+
moduleSize: 7
|
|
3933
|
+
pageNumber: 1
|
|
3934
|
+
regionName: ''
|
|
3935
|
+
resultCoordinateType: 1
|
|
3936
|
+
terminatePhase: 32
|
|
3937
|
+
x1: 0
|
|
3938
|
+
x2: 2641
|
|
3939
|
+
x3: 2641
|
|
3940
|
+
x4: 0
|
|
3941
|
+
y1: 0
|
|
3942
|
+
y2: 0
|
|
3943
|
+
y3: 1721
|
|
3944
|
+
y4: 1721
|
|
3945
|
+
barcodeBytes:
|
|
3946
|
+
- 80
|
|
3947
|
+
- 97
|
|
3948
|
+
- 116
|
|
3949
|
+
- 99
|
|
3950
|
+
- 104
|
|
3951
|
+
- 32
|
|
3952
|
+
- 50
|
|
3953
|
+
barcodeFormat: 262144
|
|
3954
|
+
barcodeFormatString: PatchCode
|
|
3955
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3956
|
+
barcodeFormat_2: 0
|
|
3957
|
+
barcodeText: Patch 2
|
|
3958
|
+
detailedResult: null
|
|
3959
|
+
localizationResult:
|
|
3960
|
+
ResultPoints:
|
|
3961
|
+
- 0, 0
|
|
3962
|
+
- 2641, 0
|
|
3963
|
+
- 2641, 1721
|
|
3964
|
+
- 0, 1721
|
|
3965
|
+
accompanyingTextBytes: []
|
|
3966
|
+
angle: 0
|
|
3967
|
+
barcodeFormat: 262144
|
|
3968
|
+
barcodeFormatString: PatchCode
|
|
3969
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3970
|
+
barcodeFormat_2: 0
|
|
3971
|
+
confidence: 41
|
|
3972
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
3973
|
+
moduleSize: 7
|
|
3974
|
+
pageNumber: 1
|
|
3975
|
+
regionName: ''
|
|
3976
|
+
resultCoordinateType: 1
|
|
3977
|
+
terminatePhase: 32
|
|
3978
|
+
x1: 0
|
|
3979
|
+
x2: 2641
|
|
3980
|
+
x3: 2641
|
|
3981
|
+
x4: 0
|
|
3982
|
+
y1: 0
|
|
3983
|
+
y2: 0
|
|
3984
|
+
y3: 1721
|
|
3985
|
+
y4: 1721
|
|
3986
|
+
results:
|
|
3987
|
+
- accompanyingTextBytes: []
|
|
3988
|
+
barcodeFormat: 262144
|
|
3989
|
+
barcodeFormatString: PatchCode
|
|
3990
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
3991
|
+
barcodeFormat_2: 0
|
|
3992
|
+
bytes:
|
|
3993
|
+
- 80
|
|
3994
|
+
- 97
|
|
3995
|
+
- 116
|
|
3996
|
+
- 99
|
|
3997
|
+
- 104
|
|
3998
|
+
- 32
|
|
3999
|
+
- 50
|
|
4000
|
+
clarity: -1
|
|
4001
|
+
confidence: 41
|
|
4002
|
+
deformation: 0
|
|
4003
|
+
resultType: 0
|
|
4004
|
+
- BarcodeFormat: 256
|
|
4005
|
+
BarcodeFormatString: UPC_E
|
|
4006
|
+
LocalizationResult:
|
|
4007
|
+
ResultPoints:
|
|
4008
|
+
- 613, 892
|
|
4009
|
+
- 767, 892
|
|
4010
|
+
- 766, 974
|
|
4011
|
+
- 613, 974
|
|
4012
|
+
accompanyingTextBytes: []
|
|
4013
|
+
angle: 0
|
|
4014
|
+
barcodeFormat: 3147775
|
|
4015
|
+
barcodeFormatString: OneD
|
|
4016
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
4017
|
+
barcodeFormat_2: 0
|
|
4018
|
+
confidence: 31
|
|
4019
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
4020
|
+
moduleSize: 3
|
|
4021
|
+
pageNumber: 1
|
|
4022
|
+
regionName: ''
|
|
4023
|
+
resultCoordinateType: 1
|
|
4024
|
+
terminatePhase: 32
|
|
4025
|
+
x1: 613
|
|
4026
|
+
x2: 767
|
|
4027
|
+
x3: 766
|
|
4028
|
+
x4: 613
|
|
4029
|
+
y1: 892
|
|
4030
|
+
y2: 892
|
|
4031
|
+
y3: 974
|
|
4032
|
+
y4: 974
|
|
4033
|
+
barcodeBytes:
|
|
4034
|
+
- 48
|
|
4035
|
+
- 49
|
|
4036
|
+
- 50
|
|
4037
|
+
- 51
|
|
4038
|
+
- 52
|
|
4039
|
+
- 53
|
|
4040
|
+
- 54
|
|
4041
|
+
- 53
|
|
4042
|
+
barcodeFormat: 256
|
|
4043
|
+
barcodeFormatString: UPC_E
|
|
4044
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
4045
|
+
barcodeFormat_2: 0
|
|
4046
|
+
barcodeText: '01234565'
|
|
4047
|
+
detailedResult:
|
|
4048
|
+
checkDigitBytes: []
|
|
4049
|
+
moduleSize: 3
|
|
4050
|
+
startCharsBytes: []
|
|
4051
|
+
stopCharsBytes: []
|
|
4052
|
+
localizationResult:
|
|
4053
|
+
ResultPoints:
|
|
4054
|
+
- 613, 892
|
|
4055
|
+
- 767, 892
|
|
4056
|
+
- 766, 974
|
|
4057
|
+
- 613, 974
|
|
4058
|
+
accompanyingTextBytes: []
|
|
4059
|
+
angle: 0
|
|
4060
|
+
barcodeFormat: 3147775
|
|
4061
|
+
barcodeFormatString: OneD
|
|
4062
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
4063
|
+
barcodeFormat_2: 0
|
|
4064
|
+
confidence: 31
|
|
4065
|
+
documentName: '{B683937D-B327-4488-A2C0-499760CB6BF0}'
|
|
4066
|
+
moduleSize: 3
|
|
4067
|
+
pageNumber: 1
|
|
4068
|
+
regionName: ''
|
|
4069
|
+
resultCoordinateType: 1
|
|
4070
|
+
terminatePhase: 32
|
|
4071
|
+
x1: 613
|
|
4072
|
+
x2: 767
|
|
4073
|
+
x3: 766
|
|
4074
|
+
x4: 613
|
|
4075
|
+
y1: 892
|
|
4076
|
+
y2: 892
|
|
4077
|
+
y3: 974
|
|
4078
|
+
y4: 974
|
|
4079
|
+
results:
|
|
4080
|
+
- accompanyingTextBytes: []
|
|
4081
|
+
barcodeFormat: 256
|
|
4082
|
+
barcodeFormatString: UPC_E
|
|
4083
|
+
barcodeFormatString_2: No Barcode Format in group 2
|
|
4084
|
+
barcodeFormat_2: 0
|
|
4085
|
+
bytes:
|
|
4086
|
+
- 48
|
|
4087
|
+
- 49
|
|
4088
|
+
- 50
|
|
4089
|
+
- 51
|
|
4090
|
+
- 52
|
|
4091
|
+
- 53
|
|
4092
|
+
- 54
|
|
4093
|
+
- 53
|
|
4094
|
+
clarity: -1
|
|
4095
|
+
confidence: 31
|
|
4096
|
+
deformation: 0
|
|
4097
|
+
resultType: 0
|
|
4098
|
+
headers: {}
|
|
4099
|
+
security: []
|
|
4100
|
+
components:
|
|
4101
|
+
schemas:
|
|
4102
|
+
Error:
|
|
4103
|
+
type: object
|
|
4104
|
+
required:
|
|
4105
|
+
- statusCode
|
|
4106
|
+
- code
|
|
4107
|
+
- message
|
|
4108
|
+
properties:
|
|
4109
|
+
statusCode:
|
|
4110
|
+
type: number
|
|
4111
|
+
description: >-
|
|
4112
|
+
http status code, 401 is authentication error (missing auth, or auth
|
|
4113
|
+
is invalid), 403 is license error or no access, e.g. non-admin want
|
|
4114
|
+
to access admin resource
|
|
4115
|
+
code:
|
|
4116
|
+
type: number
|
|
4117
|
+
format: int32
|
|
4118
|
+
description: error code in server, Usually is 0 or a negative number.
|
|
4119
|
+
message:
|
|
4120
|
+
type: string
|
|
4121
|
+
cause:
|
|
4122
|
+
type: object
|
|
4123
|
+
description: optional, if exits, it show the system error code and message.
|
|
4124
|
+
properties:
|
|
4125
|
+
code:
|
|
4126
|
+
type: number
|
|
4127
|
+
format: int32
|
|
4128
|
+
description: system error code.
|
|
4129
|
+
message:
|
|
4130
|
+
type: string
|
|
4131
|
+
description: system error string of the code.
|
|
4132
|
+
examples:
|
|
4133
|
+
- cause:
|
|
4134
|
+
code: 3
|
|
4135
|
+
message: The system cannot find the path specified.
|
|
4136
|
+
code: -2113
|
|
4137
|
+
message: The parameter is not valid.
|
|
4138
|
+
statusCode: 400
|
|
4139
|
+
ScanDocumentInfo:
|
|
4140
|
+
type: object
|
|
4141
|
+
description: |
|
|
4142
|
+
Not all info is same with documentation, e.g. image url, image uid
|
|
4143
|
+
externalDocs:
|
|
4144
|
+
url: >-
|
|
4145
|
+
https://www.dynamsoft.com/web-twain/docs/info/api/Interfaces.html#outputinfo
|
|
4146
|
+
properties: {}
|
|
4147
|
+
examples:
|
|
4148
|
+
- extendedImageInfo: {}
|
|
4149
|
+
imageId: 1
|
|
4150
|
+
imageInfo:
|
|
4151
|
+
BitsPerPixel: 24
|
|
4152
|
+
BitsPerSample:
|
|
4153
|
+
- 8
|
|
4154
|
+
- 8
|
|
4155
|
+
- 8
|
|
4156
|
+
- 0
|
|
4157
|
+
- 0
|
|
4158
|
+
- 0
|
|
4159
|
+
- 0
|
|
4160
|
+
- 0
|
|
4161
|
+
Compression: 0
|
|
4162
|
+
ImageLayout:
|
|
4163
|
+
DocumentNumber: 1
|
|
4164
|
+
Frame:
|
|
4165
|
+
Bottom: 11
|
|
4166
|
+
Left: 0
|
|
4167
|
+
Right: 8.5
|
|
4168
|
+
Top: 0
|
|
4169
|
+
FrameNumber: 0
|
|
4170
|
+
PageNumber: 1
|
|
4171
|
+
ImageLength: 2200
|
|
4172
|
+
ImageWidth: 1700
|
|
4173
|
+
PixelType: 2
|
|
4174
|
+
Planar: false
|
|
4175
|
+
SamplesPerPixel: 3
|
|
4176
|
+
XResolution: 200
|
|
4177
|
+
YResolution: 200
|
|
4178
|
+
imageuid: 1951d65a72b1
|
|
4179
|
+
url: >-
|
|
4180
|
+
https://127.0.0.1:18623/api/device/scanners/jobs/510dadf2-7e29-4172-80f1-49fa5d2ea0bf/next-page?page=1951d65a72b1
|
|
4181
|
+
ScannerType:
|
|
4182
|
+
externalDocs:
|
|
4183
|
+
url: >-
|
|
4184
|
+
https://www.dynamsoft.com/web-twain/docs/info/api/Dynamsoft_Enum.html#dynamsoftDWTenumDWT_devicetype
|
|
4185
|
+
type: integer
|
|
4186
|
+
format: int32
|
|
4187
|
+
description: |
|
|
4188
|
+
one or a combination of:
|
|
4189
|
+
* 0x10 TWAINSCANNER
|
|
4190
|
+
* 0x20 WIASCANNER
|
|
4191
|
+
* 0x40 TWAINX64SCANNER
|
|
4192
|
+
* 0x80 ICASCANNER
|
|
4193
|
+
* 0x100 SANESCANNER
|
|
4194
|
+
* 0x200 ESCLSCANNER
|
|
4195
|
+
* 0x400 WIFIDIRECTSCANNER
|
|
4196
|
+
* 0x800 WIATWAINSCANNER
|
|
4197
|
+
examples:
|
|
4198
|
+
- 16
|
|
4199
|
+
Scanner:
|
|
4200
|
+
type: object
|
|
4201
|
+
description: |
|
|
4202
|
+
We also return websocket protocol info. but not list.
|
|
4203
|
+
properties:
|
|
4204
|
+
name:
|
|
4205
|
+
type: string
|
|
4206
|
+
description: Scanner name
|
|
4207
|
+
examples:
|
|
4208
|
+
- TWAIN2 FreeImage Software Scanner
|
|
4209
|
+
type: *ref_2
|
|
4210
|
+
device:
|
|
4211
|
+
type: string
|
|
4212
|
+
description: A json string of the scanner details.
|
|
4213
|
+
examples:
|
|
4214
|
+
- >-
|
|
4215
|
+
{"deviceInfo":{"Manufacturer":"VFdBSU4gV29ya2luZyBHcm91cA==","ProductFamily":"U29mdHdhcmUgU2Nhbg==","ProductName":"VFdBSU4yIEZyZWVJbWFnZSBTb2Z0d2FyZSBTY2FubmVy","ProtocolMajor":2,"ProtocolMinor":1,"SupportedGroups":0,"Version":{"Country":1,"Info":"Mi4xLjMgc2FtcGxlIHJlbGVhc2UgMzJiaXQ=","Language":2,"MajorNum":2,"MinorNum":1}},"deviceType":16,"isSystemDefaultPrinter":false,"name":"VFdBSU4yIEZyZWVJbWFnZSBTb2Z0d2FyZSBTY2FubmVy"}
|
|
4216
|
+
required:
|
|
4217
|
+
- name
|
|
4218
|
+
- type
|
|
4219
|
+
- device
|
|
4220
|
+
CreateScanJobOptions:
|
|
4221
|
+
type: object
|
|
4222
|
+
properties:
|
|
4223
|
+
autoRun:
|
|
4224
|
+
type: boolean
|
|
4225
|
+
default: true
|
|
4226
|
+
description: >-
|
|
4227
|
+
If true, will run the job at once after created. otherwise the job
|
|
4228
|
+
will be created but not run, status is pending, and the scanner
|
|
4229
|
+
will be locked, if the scanner is a twain source, the source will be
|
|
4230
|
+
opened automatically. Recommend to set it as false, avoid your
|
|
4231
|
+
papers may be scanned by others.
|
|
4232
|
+
scannerFailureTimeout:
|
|
4233
|
+
type: integer
|
|
4234
|
+
format: int32
|
|
4235
|
+
default: 15
|
|
4236
|
+
description: >-
|
|
4237
|
+
time out for communication with scanner. unit is second. default is
|
|
4238
|
+
15. We have a default 15 seconds for twain scanner open. Twain
|
|
4239
|
+
scanner will report error when failed to open source, or paper
|
|
4240
|
+
jammed. If you are not near the scanner, recommend to set a suitable
|
|
4241
|
+
time. We will start timer when open source, set capability/settings,
|
|
4242
|
+
acquire, and when we received a page, we will restart the timer.
|
|
4243
|
+
jobTimeout:
|
|
4244
|
+
type: integer
|
|
4245
|
+
format: int32
|
|
4246
|
+
default: 0
|
|
4247
|
+
description: >-
|
|
4248
|
+
time out for the scan job. unit is second. default is 0, never
|
|
4249
|
+
timeout. If you create a pending job, the scanner will be locked
|
|
4250
|
+
auto, you can release the scanner through delete the job or set a
|
|
4251
|
+
job timeout. We will start timer after pending job was created, but
|
|
4252
|
+
when the job is running, we will stop the timer. After the job was
|
|
4253
|
+
done (completed or canceled or fault), we will restart the timer if
|
|
4254
|
+
you set.
|
|
4255
|
+
device:
|
|
4256
|
+
type: string
|
|
4257
|
+
description: same to scanner returned, in Device.device
|
|
4258
|
+
config:
|
|
4259
|
+
type: object
|
|
4260
|
+
description: >
|
|
4261
|
+
property apply order is settings -> caps -> config Add a
|
|
4262
|
+
CheckFeederLoaded property to check if the feeder is loaded.
|
|
4263
|
+
externalDocs:
|
|
4264
|
+
url: >-
|
|
4265
|
+
https://www.dynamsoft.com/web-twain/docs/info/api/Interfaces.html#DeviceConfiguration
|
|
4266
|
+
properties: {}
|
|
4267
|
+
caps:
|
|
4268
|
+
type: object
|
|
4269
|
+
description: scanner capability setting
|
|
4270
|
+
externalDocs:
|
|
4271
|
+
url: >-
|
|
4272
|
+
https://www.dynamsoft.com/web-twain/docs/info/api/Interfaces.html#capabilities
|
|
4273
|
+
properties: {}
|
|
4274
|
+
settings:
|
|
4275
|
+
type: string
|
|
4276
|
+
description: >
|
|
4277
|
+
If caps and settings exist at the same time, we will apply settings
|
|
4278
|
+
first, then caps. It is only for twain scanner. We can get the settings via
|
|
4279
|
+
/device/scanners/jobs/{jobuid}/scanner/settings
|
|
4280
|
+
checkFeederLoaded:
|
|
4281
|
+
type: boolean
|
|
4282
|
+
description: >-
|
|
4283
|
+
for TWAIN driver, if scan with feeder, set it as true, we will try
|
|
4284
|
+
to detect the feeder is loaded, if the driver is supported, it can
|
|
4285
|
+
work, otherwise it may be not right. (ICA not sure)
|
|
4286
|
+
default: false
|
|
4287
|
+
examples:
|
|
4288
|
+
- autoRun: false
|
|
4289
|
+
device: >-
|
|
4290
|
+
{"deviceInfo":{"Manufacturer":"VFdBSU4gV29ya2luZyBHcm91cA==","ProductFamily":"U29mdHdhcmUgU2Nhbg==","ProductName":"VFdBSU4yIEZyZWVJbWFnZSBTb2Z0d2FyZSBTY2FubmVy","ProtocolMajor":2,"ProtocolMinor":1,"SupportedGroups":0,"Version":{"Country":1,"Info":"Mi4xLjMgc2FtcGxlIHJlbGVhc2UgMzJiaXQ=","Language":2,"MajorNum":2,"MinorNum":1}},"deviceType":16,"isSystemDefaultPrinter":false,"name":"VFdBSU4yIEZyZWVJbWFnZSBTb2Z0d2FyZSBTY2FubmVy"}
|
|
4291
|
+
name: TWAIN2 FreeImage Software Scanner
|
|
4292
|
+
checkFeederLoaded: true
|
|
4293
|
+
config:
|
|
4294
|
+
PixelType: 1
|
|
4295
|
+
Resolution: 300
|
|
4296
|
+
IfFeederEnabled: true
|
|
4297
|
+
IfDuplexEnabled: false
|
|
4298
|
+
IfGetImageInfo: true
|
|
4299
|
+
IfGetExtImageInfo: true
|
|
4300
|
+
extendedImageInfoQueryLevel: 0
|
|
4301
|
+
IfCloseSourceAfterAcquire: true
|
|
4302
|
+
XferCount: 11
|
|
4303
|
+
caps:
|
|
4304
|
+
exception: ignore
|
|
4305
|
+
capabilities:
|
|
4306
|
+
- capability: 4355
|
|
4307
|
+
curValue: 500
|
|
4308
|
+
settings: >-
|
|
4309
|
+
Rfj6pIMTNkCu3BfDloGItBAAAAACEAAABgAFAAEAAAAQAAAAExAAAAYABQAAAAAAEAAAAAcQAAAGAAUAAQAAABAAAAArEQAABAAFABgAAAAQAAAAHBEAAAQABQAAAAAAEAAAAAABAAAEAAUAAAAAABwAAAAUEQAACAAFAPgqAAAAAAAANCEAAAAAAAAQAAAADBEAAAQABQACAAAAEAAAAB8RAAAEAAUAAAAAABAAAAABAQAABAAFAAIAAAAQAAAAIBEAAAQABQAAAAAAEAAAACIRAAAEAAUAAwAAABAAAAAQEQAABAAFAAAAAAAQAAAAAgEAAAQABQAAAAAAEAAAABgRAAAHAAUAAABIQxAAAAAZEQAABwAFAAAASEMQAAAAIxEAAAcABQAAAABDEAAAAAMRAAAHAAUAAAAAABAAAAABEQAABwAFAAAAAAAQAAAACBEAAAcABQAAAIA/EAAAAAGAAAAGAAUAAAAAAA==
|
|
4310
|
+
ScannerJob:
|
|
4311
|
+
properties:
|
|
4312
|
+
jobuid:
|
|
4313
|
+
type: string
|
|
4314
|
+
examples:
|
|
4315
|
+
- B3701DC5-86D3-44B6-A8A1-FF0B5D43FD86
|
|
4316
|
+
status:
|
|
4317
|
+
type: string
|
|
4318
|
+
default: running
|
|
4319
|
+
enum:
|
|
4320
|
+
- pending
|
|
4321
|
+
- running
|
|
4322
|
+
- completed
|
|
4323
|
+
- faulted
|
|
4324
|
+
description: >-
|
|
4325
|
+
If the job is completed, the status will be completed; If faulted,
|
|
4326
|
+
the status will be faulted, e.g. failed to open source, scanner was
|
|
4327
|
+
locked by others... Job status possible transitions:
|
|
4328
|
+
1. pending->running->completed
|
|
4329
|
+
2. pending->running->faulted
|
|
4330
|
+
3. pending->running->canceled
|
|
4331
|
+
scanner: *ref_3
|
|
4332
|
+
type: object
|
|
4333
|
+
required:
|
|
4334
|
+
- jobuid
|
|
4335
|
+
- status
|
|
4336
|
+
- scanner
|
|
4337
|
+
PageInfo:
|
|
4338
|
+
type: object
|
|
4339
|
+
properties:
|
|
4340
|
+
uid:
|
|
4341
|
+
type: string
|
|
4342
|
+
examples:
|
|
4343
|
+
- 190817548d70
|
|
4344
|
+
description: page uid
|
|
4345
|
+
required:
|
|
4346
|
+
- uid
|
|
4347
|
+
description: page info
|
|
4348
|
+
DocumentInfo:
|
|
4349
|
+
type: object
|
|
4350
|
+
properties:
|
|
4351
|
+
uid:
|
|
4352
|
+
type: string
|
|
4353
|
+
examples:
|
|
4354
|
+
- 190807444d76
|
|
4355
|
+
description: document uid
|
|
4356
|
+
pages:
|
|
4357
|
+
type: array
|
|
4358
|
+
items:
|
|
4359
|
+
$ref: '#/components/schemas/PageInfo'
|
|
4360
|
+
description: page info
|
|
4361
|
+
description: pages info
|
|
4362
|
+
required:
|
|
4363
|
+
- pages
|
|
4364
|
+
- uid
|
|
4365
|
+
description: document info
|
|
4366
|
+
ServerSettingsInput:
|
|
4367
|
+
type: object
|
|
4368
|
+
description: some settings only admin can change. can only update any of them.
|
|
4369
|
+
properties:
|
|
4370
|
+
logLevel:
|
|
4371
|
+
type: integer
|
|
4372
|
+
format: int32
|
|
4373
|
+
description: 0 is disabled, 30 is verbos, 1 is debug + info + error.
|
|
4374
|
+
examples:
|
|
4375
|
+
- 1
|
|
4376
|
+
ServerSettings:
|
|
4377
|
+
type: object
|
|
4378
|
+
description: Currently, only return log level.
|
|
4379
|
+
properties:
|
|
4380
|
+
logLevel:
|
|
4381
|
+
type: integer
|
|
4382
|
+
format: int32
|
|
4383
|
+
description: 0 is disabled, 30 is verbos, 1 is debug + info + error
|
|
4384
|
+
examples:
|
|
4385
|
+
- 1
|
|
4386
|
+
required:
|
|
4387
|
+
- logLevel
|
|
4388
|
+
CreateDocumentOptions:
|
|
4389
|
+
type: object
|
|
4390
|
+
properties:
|
|
4391
|
+
password:
|
|
4392
|
+
type: string
|
|
4393
|
+
default: ''
|
|
4394
|
+
maxLength: 32
|
|
4395
|
+
description: max length is 32
|
|
4396
|
+
CreateProcessOptions:
|
|
4397
|
+
type: object
|
|
4398
|
+
properties:
|
|
4399
|
+
settings:
|
|
4400
|
+
oneOf:
|
|
4401
|
+
- type: object
|
|
4402
|
+
examples:
|
|
4403
|
+
- minBlockHeight: 20
|
|
4404
|
+
maxBlockHeight: 30
|
|
4405
|
+
- ImageParameter:
|
|
4406
|
+
Name: BestCoverage
|
|
4407
|
+
BarcodeFormatIds_2:
|
|
4408
|
+
- BF2_POSTALCODE
|
|
4409
|
+
- BF2_DOTCODE
|
|
4410
|
+
DeblurLevel: 9
|
|
4411
|
+
ExpectedBarcodesCount: 512
|
|
4412
|
+
ScaleDownThreshold: 100000
|
|
4413
|
+
LocalizationModes:
|
|
4414
|
+
- Mode: LM_CONNECTED_BLOCKS
|
|
4415
|
+
- Mode: LM_SCAN_DIRECTLY
|
|
4416
|
+
- Mode: LM_STATISTICS
|
|
4417
|
+
- Mode: LM_LINES
|
|
4418
|
+
- Mode: LM_STATISTICS_MARKS
|
|
4419
|
+
GrayscaleTransformationModes:
|
|
4420
|
+
- Mode: GTM_ORIGINAL
|
|
4421
|
+
- Mode: GTM_INVERTED
|
|
4422
|
+
- ImageParameter:
|
|
4423
|
+
Name: Balance
|
|
4424
|
+
BarcodeFormatIds_2:
|
|
4425
|
+
- BF2_POSTALCODE
|
|
4426
|
+
- BF2_DOTCODE
|
|
4427
|
+
DeblurLevel: 5
|
|
4428
|
+
ExpectedBarcodesCount: 512
|
|
4429
|
+
LocalizationModes:
|
|
4430
|
+
- Mode: LM_CONNECTED_BLOCKS
|
|
4431
|
+
- Mode: LM_STATISTICS
|
|
4432
|
+
- ImageParameter:
|
|
4433
|
+
Name: BestSpeed
|
|
4434
|
+
BarcodeFormatIds_2:
|
|
4435
|
+
- BF2_POSTALCODE
|
|
4436
|
+
- BF2_DOTCODE
|
|
4437
|
+
DeblurLevel: 3
|
|
4438
|
+
ExpectedBarcodesCount: 512
|
|
4439
|
+
LocalizationModes:
|
|
4440
|
+
- Mode: LM_SCAN_DIRECTLY
|
|
4441
|
+
TextFilterModes:
|
|
4442
|
+
- MinImageDimension: 262144
|
|
4443
|
+
Mode: TFM_GENERAL_CONTOUR
|
|
4444
|
+
properties: {}
|
|
4445
|
+
description: >-
|
|
4446
|
+
for barcode reader, default is coverage template. you can also pass
|
|
4447
|
+
"coverage" or "speed" or "balance".
|
|
4448
|
+
source:
|
|
4449
|
+
oneOf:
|
|
4450
|
+
- type: string
|
|
4451
|
+
description: DWT image url. If it's DWT image url, we should think cors.
|
|
4452
|
+
examples:
|
|
4453
|
+
- >-
|
|
4454
|
+
https://127.0.0.1:18623/api/device/scanners/jobs/dd40716d-48d1-4d32-89f7-1d53f9665d91/next-page?page=19522d0c5282
|
|
4455
|
+
required:
|
|
4456
|
+
- source
|
|
4457
|
+
securitySchemes: {}
|
|
4458
|
+
servers: []
|
|
4459
|
+
security: []
|