You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: programming/android/index.md
+50-14Lines changed: 50 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,8 @@ layout: default-layout
3
3
title: Main Page - Dynamsoft Barcode Reader for Android
4
4
description: This is the main page of Dynamsoft Barcode Reader for Android SDK.
5
5
keywords: android
6
-
needAutoGenerateSidebar: false
6
+
needAutoGenerateSidebar: true
7
+
needGenerateH3Content: true
7
8
breadcrumbText: Android
8
9
permalink: /programming/android/
9
10
---
@@ -14,29 +15,64 @@ Dynamsoft Barcode Reader (DBR) SDK Android Edition is a barcode reading tool des
14
15
15
16
You can either get a quick start with the [BarcodeScanner APIs](api-reference/barcode-scanner/index.md) or experience a highly customizable development with the [foundational APIs](api-reference/index.md). Furthermore, DBR provides a powerful [parameter]({{ site.dcvb_parameters}}file/index.html?lang=android) system in order to cope with various scenarios.
16
17
17
-
## Using the SDK
18
+
|| Develop with BarcodeScanner APIs | Develop with Foundational APIs |
> Note: If you are looking for a solution to scan large batches of barcodes, please refer to the [`BatchBarcodeScanner`](https://www.dynamsoft.com/use-cases/batch-barcode-scanning/){:target="_blank"}. The `BatchBarcodeScanner` has much higher ability on scanning large number of barcodes. It also provides you a highly interactable UI for result previewing, editing, saving, reusing and sharing.
26
51
27
52
-[Build your First APP](user-guide.md)
28
-
-[Configure your barcode scanner](user-guide/configure-barcode-scanner.md)
29
-
-[Build your APP with foundational APIs](foundational-guide.md).
53
+
-[Configure Your Barcode Scanner](user-guide/configure-barcode-scanner.md)
54
+
-[View BarcodeScanner API References](./api-reference/barcode-scanner/index.md)
55
+
-[Check out BarcodeScanner Samples on GitHub](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/BarcodeScannerAPISamples)
56
+
57
+
## Develop with Foundational APIs
58
+
59
+
If you are looking for a fully customizable barcode decoding library, you are welcome to use the Foundational APIs.
60
+
61
+
-[Build your APP with foundational APIs](foundational-guide.md)
Copy file name to clipboardExpand all lines: programming/android/user-guide/configure-barcode-scanner.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ needAutoGenerateSidebar: true
14
14
When developing with [`BarcodeScannerActivity`](../api-reference/barcode-scanner/barcode-scanner-activity.md), you can add configurations via the [`BarcodeScannerConfig`](../api-reference/barcode-scanner/barcode-scanner-config.md) class. These articles will guide you on how to configure the settings.
If you are looking for a solution to scan large batches of barcodes, please refer to the [`BatchBarcodeScanner`](https://www.dynamsoft.com/use-cases/batch-barcode-scanning/){:target="_blank"}. The `BatchBarcodeScanner` has much higher ability on scanning large number of barcodes. It also provides you a highly interactable UI for result previewing, editing, saving, reusing and sharing.
56
+
57
+
<tablestyle = "text-align:left">
58
+
<thead>
59
+
<tr>
60
+
<th nowrap="nowrap"></th>
61
+
<th nowrap="nowrap">BarcodeScanner Single Mode</th>
62
+
<th nowrap="nowrap">BarcodeScanner Multi Mode</th>
<td style="vertical-align:text-top">Decodes at lease one barcode that available on the latest frame.</td>
75
+
<td style="vertical-align:text-top">Decodes all barcodes that available on the latest frame.</td>
76
+
<td style="vertical-align:text-top">Decodes all barcodes that available on the latest frame. (TTL Overlap Mode)<br>or<br>Decodes all barcodes that available on the first frame. (TTS Ovarlap Mode)<br>or<br>Decodes all barcodes that ever exists while capturing. (Panorama Mode)</td>
77
+
</tr>
78
+
<tr>
79
+
<td style="vertical-align:text-top">Result</td>
80
+
<td style="vertical-align:text-top">Always returns one barcode result. If decoded more than one barcodes, users will be asked to select one.</td>
<td style="vertical-align:text-top">Supports the following operations<br>1. Extend the current result with all kinds of available image source.<br>2. Manual input new results or edit the existing results<br>3. Save as history<br>4. Export as file (.png, .csv, etc.)</td>
Copy file name to clipboardExpand all lines: programming/objectivec-swift/index.md
+48-14Lines changed: 48 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ layout: default-layout
3
3
title: Main Page - Dynamsoft Barcode Reader for iOS
4
4
description: This is the main page of Dynamsoft Barcode Reader for iOS SDK.
5
5
keywords: objective-c, oc, swift
6
-
needAutoGenerateSidebar: false
6
+
needAutoGenerateSidebar: true
7
7
needGenerateH3Content: true
8
8
breadcrumbText: iOS
9
9
permalink: /programming/objectivec-swift/
@@ -15,29 +15,63 @@ Dynamsoft Barcode Reader (DBR) SDK iOS Edition is a barcode reading tool designe
15
15
16
16
You can either get a quick start with the [BarcodeScanner APIs](api-reference/barcode-scanner/index.md) or experience a highly customizable development with the [foundational APIs](api-reference/index.md). Furthermore, DBR provides a powerful [parameter]({{ site.dcvb_parameters}}file/index.html?lang=objc,swift) system in order to cope with various scenarios.
17
17
18
-
## Using the SDK
18
+
|| Develop with BarcodeScanner APIs | Develop with Foundational APIs |
> Note: If you are looking for a solution to scan large batches of barcodes, please refer to the [`BatchBarcodeScanner`](https://www.dynamsoft.com/use-cases/batch-barcode-scanning/){:target="_blank"}. The `BatchBarcodeScanner` has much higher ability on scanning large number of barcodes. It also provides you a highly interactable UI for result previewing, editing, saving, reusing and sharing.
27
51
28
52
-[Build your First APP](user-guide.md)
29
-
-[Configure your barcode scanner](user-guide/configure-barcode-scanner.md)
30
-
-[Build your APP with foundational APIs](foundational-guide.md).
53
+
-[Configure your Barcode Scanner](user-guide/configure-barcode-scanner.md)
54
+
-[View BarcodeScanner API References](./api-reference/barcode-scanner/index.md)
55
+
-[Check out BarcodeScanner Samples on GitHub](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/ios/BarcodeScannerAPISamples)
56
+
57
+
## Develop with Foundational APIs
58
+
59
+
If you are looking for a fully customizable barcode decoding library, you are welcome to use the Foundational APIs.
60
+
61
+
-[Build your APP with foundational APIs](foundational-guide.md)
Copy file name to clipboardExpand all lines: programming/objectivec-swift/user-guide/configure-barcode-scanner.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ needAutoGenerateSidebar: true
14
14
When developing with [`BarcodeScannerViewController`](../api-reference/barcode-scanner/barcode-scanner-view-controller.md), you can add configurations via the [`BarcodeScannerConfig`](../api-reference/barcode-scanner/barcode-scanner-config.md) class. This page will guide you on how to configure the settings.
0 commit comments