blob: 5835a1725a49713f5d30e67e8603d4ab14a5f894 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
ZBarImageScanner Class Reference
================================
.. class:: ZBarImageScanner
:Inherits from: :class:`NSObject`
This is a low-level interface for programmatically scanning images without
a user interface. If you want to scan images manually selected by the user
(from the photo library or using the camera), you may prefer to use a
:class:`ZBarReaderController` instead.
This class is a wrapper around a :type:`zbar_image_scanner_t` C object
(q.v.)
Properties
----------
.. member:: BOOL enableCache
Enable the inter-frame consistency cache. Set to ``YES`` for scanning
video or ``NO`` for scanning images.
.. member:: ZBarSymbolSet results
Decoded symbols resulting from the last scan.
Instance Methods
----------------
.. _`parseConfig:`:
.. describe:: - (void) parseConfig:(NSString*)config
Apply scanner/decoder configuration parsed from a string.
:config: A configuration setting of the form: `symbology.config[=value]`.
.. _`setSymbology:config:to:`:
.. describe:: - (void) setSymbology:(zbar_symbol_type_t)symbology config:(zbar_config_t)config to:(int)value
Apply generic scanner/decoder configuration.
:symbology: The symbology to effect, or 0 for all.
:config: The configuration setting to adjust.
:value: The value to set for the specific configuration/symbology.
.. _`scanImage:`:
.. describe:: - (NSInteger) scanImage:(ZBarImage*)image
Scan an image for barcodes using the current configuration. The image
must be in ``Y800`` format (8-bpp graysale).
:image: The :class:`ZBarImage` to scan.
:Returns: The number of barcode symbols decoded in the image.
Constants
---------
.. type:: zbar_config_t
ZBAR_CFG_ENABLE
Control whether specific symbologies will be recognized. Disabling
unused symbologies improves performance and prevents bad scans.
ZBAR_CFG_EMIT_CHECK
Whether to include the check digit in the result data string. This
value may be set individually for symbologies where it makes sense.
ZBAR_CFG_MIN_LEN
The minimum data length for a symbol to be valid, set to 0 to disable.
Use with eg, I2/5 to avoid short scans. This value may be set
individually for variable-length symbologies.
ZBAR_CFG_MAX_LEN
The maximum data length for which a symbol is valid, set to 0 to
disable. Use with eg, I2/5 to enforce a specific range of data lengths.
This value may be set individually for variable-length symbologies.
ZBAR_CFG_UNCERTAINTY
Number of "nearby" frames that must contain a symbol before it will be
considered valid. This value may be set for individual symbologies.
ZBAR_CFG_POSITION
Whether to track position information.
ZBAR_CFG_X_DENSITY
The stride to use for scanning vertical columns of the image. This many
pixel columns will be skipped between vertical scan passes. Useful for
trading off between resolution and performance. This is a scanner
setting (use 0 for the symbology).
ZBAR_CFG_Y_DENSITY
The stride to use for scanning horizontal columns of the image. This
many pixel rows will be skipped between horizontal scan passes. Useful
for trading off between resolution and performance. This is a scanner
setting (use 0 for the symbology).
|