Skip to content

Commit 5e66248

Browse files
Updated side lists and added an index page for capabilities
1 parent 08b89eb commit 5e66248

6 files changed

Lines changed: 505 additions & 258 deletions

File tree

_includes/sidelist-programming/programming-android.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</ul>
1616
</li>
1717

18-
<li lang="android"><a class="otherLinkColour">Capabilities</a>
18+
<li lang="android"><a href="{{ site.android }}user-guide/capabilities/index.html" class="otherLinkColour">Capabilities</a>
1919
<ul>
2020
<li lang="android"><a class="otherLinkColour">Input</a>
2121
<ul lang="android">

_includes/sidelist-programming/programming-oc.html

Lines changed: 256 additions & 253 deletions
Large diffs are not rendered by default.
Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
---
2+
layout: default-layout
3+
title: Capabilities - Dynamsoft Barcode Reader Android
4+
description: Index of Dynamsoft Barcode Reader Android capabilities.
5+
keywords: capabilities, feature index, Android, java, kotlin
6+
breadcrumbText: Capabilities
7+
noTitleIndex: false
8+
needGenerateH3Content: true
9+
needAutoGenerateSidebar: true
10+
---
11+
12+
# Capabilities
13+
14+
Find the feature you need quickly by keyword.
15+
16+
## Input
17+
18+
<table>
19+
<tr>
20+
<td width="50%" valign="top">
21+
22+
- [Read from Camera]({{ site.android }}user-guide/capabilities/read-from-camera.html)
23+
24+
</td>
25+
<td width="50%" valign="top">
26+
27+
- [Read from Image]({{ site.android }}user-guide/capabilities/read-from-an-image.html)
28+
29+
</td>
30+
</tr>
31+
</table>
32+
33+
## Working with Results
34+
35+
<table>
36+
<tr>
37+
<td width="50%" valign="top">
38+
39+
- [Parameter Based Result Filter]({{ site.features }}filter-and-sort.html?lang=android)
40+
- [Get Original Image]({{ site.android }}user-guide/capabilities/get-original-image.html)
41+
- [Get Detailed Barcode Information]({{ site.features }}get-detailed-info.html?lang=android)
42+
43+
</td>
44+
<td width="50%" valign="top">
45+
46+
- [Get Barcode Confidence and Rotation]({{ site.features }}get-confidence-rotation.html?lang=android)
47+
- [Get Barcode Location]({{ site.features }}get-barcode-location.html?lang=android)
48+
- [Multi-Frame Cross Filter]({{ site.android }}user-guide/capabilities/multi-frame-cross-filter.html)
49+
50+
</td>
51+
</tr>
52+
</table>
53+
54+
## Control the Scanning Process
55+
56+
<table>
57+
<tr>
58+
<td width="50%" valign="top">
59+
60+
- [Initialize Customized Template]({{ site.android }}user-guide/capabilities/init-customized-template.html)
61+
- [Configure Simplified Settings]({{ site.android }}user-guide/capabilities/config-simplified-settings.html)
62+
- [Configure Barcode Format]({{ site.android }}user-guide/capabilities/barcode-formats.html)
63+
- [Add Scan Feedback]({{ site.android }}user-guide/capabilities/feedback.html)
64+
65+
</td>
66+
<td width="50%" valign="top">
67+
68+
- [Read a specific area/region]({{ site.android }}user-guide/capabilities/read-specific-area.html)
69+
- [Switch Single & Multiple]({{ site.android }}user-guide/capabilities/single-multiple.html)
70+
- [Zoom Control]({{ site.android }}user-guide/capabilities/zoom-control.html)
71+
72+
</td>
73+
</tr>
74+
</table>
75+
76+
## Decode Challenging Barcodes
77+
78+
<table>
79+
<tr>
80+
<td width="50%" valign="top">
81+
82+
- [Read inverted barcodes]({{ site.features }}read-inverted-barcodes.html?lang=android)
83+
- [Read deformed barcodes]({{ site.features }}read-deformed-barcodes.html?lang=android)
84+
- [Read incomplete barcodes]({{ site.features }}read-incomplete-barcodes.html?lang=android)
85+
- [Read barcodes from a large image]({{ site.features }}read-a-large-image.html?lang=android)
86+
- [Read barcodes with small module size]({{ site.features }}read-barcodes-with-small-module-size.html?lang=android)
87+
- [Read images with imbalanced colors]({{ site.features }}read-barcodes-with-imbalanced-colour.html?lang=android)
88+
- [Read images with uneven lighting]({{ site.features }}read-barcodes-with-uneven-lighting.html?lang=android)
89+
- [Read images with texture]({{ site.features }}read-images-with-texture.html?lang=android)
90+
91+
</td>
92+
<td width="50%" valign="top">
93+
94+
- [Read images with lots of text]({{ site.features }}read-images-with-lots-of-text.html?lang=android)
95+
- [Read high-density QR Codes]({{ site.features }}read-dense-barcodes.html?lang=android)
96+
- [Read DPM Codes]({{ site.usecases }}read-dpm-codes.html?lang=android)
97+
- [Read Postal Codes]({{ site.usecases }}read-postal-codes.html?lang=android)
98+
- [Preprocess images to read difficult barcodes]({{ site.features }}preprocess-images.html?lang=android)
99+
- [Pre-detect Region of Interest (ROI)]({{ site.features }}use-region-predetection.html?lang=android)
100+
- [Use format specific configurations]({{ site.features }}use-format-specific-configuration.html?lang=android)
101+
102+
</td>
103+
</tr>
104+
</table>
105+
106+
## Customize the UI
107+
108+
<table>
109+
<tr>
110+
<td width="50%" valign="top">
111+
112+
- [Add Functional Buttons]({{ site.android }}user-guide/capabilities/add-functional-buttons.html)
113+
- [Add Graphics with DrawingItems]({{ site.android }}user-guide/capabilities/add-graphics.html)
114+
115+
</td>
116+
<td width="50%" valign="top">
117+
118+
- [Scan Region Style]({{ site.android }}user-guide/capabilities/scan-region-style.html)
119+
120+
</td>
121+
</tr>
122+
</table>

programming/android/user-guide/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Choose one of the two guides below based on your development goal.
1616
<table>
1717
<tr>
1818
<td width="50%" valign="top">
19-
<a href="../user-guide.md" style="display:block; color:inherit; text-decoration:none;">
19+
<a href="../user-guide.html" style="display:block; color:inherit; text-decoration:none;">
2020
<h2>🚀 Quick Start with BarcodeScanner</h2>
2121
<p>
2222
Build a working scanner app quickly with the ready-to-use <code>BarcodeScanner</code> component.
@@ -31,7 +31,7 @@ Choose one of the two guides below based on your development goal.
3131
</a>
3232
</td>
3333
<td width="50%" valign="top">
34-
<a href="../foundational-guide.md" style="display:block; color:inherit; text-decoration:none;">
34+
<a href="../foundational-guide.html" style="display:block; color:inherit; text-decoration:none;">
3535
<h2>🛠️ Advanced with Foundational APIs</h2>
3636
<p>
3737
Use Foundational APIs for professional-level customization of camera control,
Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
---
2+
layout: default-layout
3+
title: Capabilities - Dynamsoft Barcode Reader iOS
4+
description: Index of Dynamsoft Barcode Reader iOS capabilities.
5+
keywords: capabilities, feature index, iOS, objective-c, swift
6+
breadcrumbText: Capabilities
7+
noTitleIndex: false
8+
needGenerateH3Content: true
9+
needAutoGenerateSidebar: true
10+
---
11+
12+
# Capabilities
13+
14+
Find the feature you need quickly by keyword.
15+
16+
## Input
17+
18+
<table>
19+
<tr>
20+
<td width="50%" valign="top">
21+
22+
- [Read from Camera]({{ site.oc }}user-guide/capabilities/read-from-camera.html)
23+
24+
</td>
25+
<td width="50%" valign="top">
26+
27+
- [Read from Image]({{ site.oc }}user-guide/capabilities/read-from-an-image.html)
28+
29+
</td>
30+
</tr>
31+
</table>
32+
33+
## Working with Results
34+
35+
<table>
36+
<tr>
37+
<td width="50%" valign="top">
38+
39+
- [Parameter Based Result Filter]({{ site.features }}filter-and-sort.html?lang=objc,swift)
40+
- [Get Original Image]({{ site.oc }}user-guide/capabilities/get-original-image.html)
41+
- [Get Detailed Barcode Information]({{ site.features }}get-detailed-info.html?lang=objc,swift)
42+
43+
</td>
44+
<td width="50%" valign="top">
45+
46+
- [Get Barcode Confidence and Rotation]({{ site.features }}get-confidence-rotation.html?lang=objc,swift)
47+
- [Get Barcode Location]({{ site.features }}get-barcode-location.html?lang=objc,swift)
48+
- [Multi-Frame Cross Filter]({{ site.oc }}user-guide/capabilities/multi-frame-cross-filter.html)
49+
50+
</td>
51+
</tr>
52+
</table>
53+
54+
## Control the Scanning Process
55+
56+
<table>
57+
<tr>
58+
<td width="50%" valign="top">
59+
60+
- [Initialize Customized Template]({{ site.oc }}user-guide/capabilities/init-customized-template.html)
61+
- [Configure Simplified Settings]({{ site.oc }}user-guide/capabilities/config-simplified-settings.html)
62+
- [Configure Barcode Format]({{ site.oc }}user-guide/capabilities/barcode-formats.html)
63+
- [Add Scan Feedback]({{ site.oc }}user-guide/capabilities/feedback.html)
64+
65+
</td>
66+
<td width="50%" valign="top">
67+
68+
- [Read a specific area/region]({{ site.oc }}user-guide/capabilities/read-specific-area.html)
69+
- [Switch Single & Multiple]({{ site.oc }}user-guide/capabilities/single-multiple.html)
70+
- [Zoom Control]({{ site.oc }}user-guide/capabilities/zoom-control.html)
71+
72+
</td>
73+
</tr>
74+
</table>
75+
76+
## Decode Challenging Barcodes
77+
78+
<table>
79+
<tr>
80+
<td width="50%" valign="top">
81+
82+
- [Read inverted barcodes]({{ site.features }}read-inverted-barcodes.html?lang=objc,swift)
83+
- [Read deformed barcodes]({{ site.features }}read-deformed-barcodes.html?lang=objc,swift)
84+
- [Read incomplete barcodes]({{ site.features }}read-incomplete-barcodes.html?lang=objc,swift)
85+
- [Read barcodes from a large image]({{ site.features }}read-a-large-image.html?lang=objc,swift)
86+
- [Read barcodes with small module size]({{ site.features }}read-barcodes-with-small-module-size.html?lang=objc,swift)
87+
- [Read images with imbalanced colors]({{ site.features }}read-barcodes-with-imbalanced-colour.html?lang=objc,swift)
88+
- [Read images with uneven lighting]({{ site.features }}read-barcodes-with-uneven-lighting.html?lang=objc,swift)
89+
- [Read images with texture]({{ site.features }}read-images-with-texture.html?lang=objc,swift)
90+
91+
</td>
92+
<td width="50%" valign="top">
93+
94+
- [Read images with lots of text]({{ site.features }}read-images-with-lots-of-text.html?lang=objc,swift)
95+
- [Read high-density QR Codes]({{ site.features }}read-dense-barcodes.html?lang=objc,swift)
96+
- [Read DPM Codes]({{ site.usecases }}read-dpm-codes.html?lang=objc,swift)
97+
- [Read Postal Codes]({{ site.usecases }}read-postal-codes.html?lang=objc,swift)
98+
- [Preprocess images to read difficult barcodes]({{ site.features }}preprocess-images.html?lang=objc,swift)
99+
- [Pre-detect Region of Interest (ROI)]({{ site.features }}use-region-predetection.html?lang=objc,swift)
100+
- [Use format specific configurations]({{ site.features }}use-format-specific-configuration.html?lang=objc,swift)
101+
102+
</td>
103+
</tr>
104+
</table>
105+
106+
## Customize the UI
107+
108+
<table>
109+
<tr>
110+
<td width="50%" valign="top">
111+
112+
- [Add Functional Buttons]({{ site.oc }}user-guide/capabilities/add-functional-buttons.html)
113+
- [Add Graphics with DrawingItems]({{ site.oc }}user-guide/capabilities/add-graphics.html)
114+
115+
</td>
116+
<td width="50%" valign="top">
117+
118+
- [Scan Region Style]({{ site.oc }}user-guide/capabilities/scan-region-style.html)
119+
120+
</td>
121+
</tr>
122+
</table>

programming/objectivec-swift/user-guide/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Choose one of the two guides below based on your development goal.
1616
<table>
1717
<tr>
1818
<td width="50%" valign="top">
19-
<a href="../user-guide.md" style="display:block; color:inherit; text-decoration:none;">
19+
<a href="../user-guide.html" style="display:block; color:inherit; text-decoration:none;">
2020
<h2>🚀 Quick Start with BarcodeScanner</h2>
2121
<p>
2222
Build a working scanner app quickly with the ready-to-use <code>BarcodeScanner</code> component.
@@ -31,7 +31,7 @@ Choose one of the two guides below based on your development goal.
3131
</a>
3232
</td>
3333
<td width="50%" valign="top">
34-
<a href="../foundational-guide.md" style="display:block; color:inherit; text-decoration:none;">
34+
<a href="../foundational-guide.html" style="display:block; color:inherit; text-decoration:none;">
3535
<h2>🛠️ Advanced with Foundational APIs</h2>
3636
<p>
3737
Use Foundational APIs for professional-level customization of camera control,

0 commit comments

Comments
 (0)