Skip to content

Commit

Permalink
supported code types docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mgefimov committed Nov 4, 2024
1 parent 218d816 commit 6492ba4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/docs/guides/CODE_SCANNING.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -147,5 +147,23 @@ You will need to keep this in mind and do the conversion from EAN-13 to UPC-A yo
Interleaved2of5 (ITF) barcodes are supported by both, Android and iOS, where Android's SDK supports barcodes in ITF format with a minimum length of 6 characters.

ITF-14 is a sub type of interleaved2of5 which always encodes 14 characters. The ITF-14 type is only supported by iOS. If you want to have the restriction to 14 characters in Android as well, you have to handle this in your own code.
## Supported Code Types

| Code Type | iOS | Android |
|----------------------|--------------------|--------------------|
| qr | :white_check_mark: | :white_check_mark: |
| aztec | :white_check_mark: | :white_check_mark: |
| data-matrix | :white_check_mark: | :white_check_mark: |
| ean-13 | :white_check_mark: | :white_check_mark: |
| ean-8 | :white_check_mark: | :white_check_mark: |
| code-128 | :white_check_mark: | :white_check_mark: |
| code-39 | :white_check_mark: | :white_check_mark: |
| code-93 | :white_check_mark: | :white_check_mark: |
| codabar | 15.4+ | :white_check_mark: |
| itf | :white_check_mark: | :white_check_mark: |
| itf-14 | :white_check_mark: | :white_check_mark: |
| upc-e | :white_check_mark: | :white_check_mark: |
| upc-a | :white_check_mark: | :white_check_mark: |
| pdf-417 | :white_check_mark: | :white_check_mark: |

#### 🚀 Next section: [Frame Processors](frame-processors)

0 comments on commit 6492ba4

Please sign in to comment.