-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathReadAnImage.cpp
More file actions
94 lines (84 loc) · 3.58 KB
/
ReadAnImage.cpp
File metadata and controls
94 lines (84 loc) · 3.58 KB
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
#include <iostream>
#include <string>
#include "../../../Include/DynamsoftCaptureVisionRouter.h"
using namespace std;
using namespace dynamsoft::license;
using namespace dynamsoft::cvr;
using namespace dynamsoft::dbr;
using namespace dynamsoft::basic_structures;
#if defined(_WIN64) || defined(_WIN32)
#ifdef _WIN64
#pragma comment(lib, "../../../Dist/Lib/Windows/x64/DynamsoftLicensex64.lib")
#pragma comment(lib, "../../../Dist/Lib/Windows/x64/DynamsoftCorex64.lib")
#pragma comment(lib, "../../../Dist/Lib/Windows/x64/DynamsoftCaptureVisionRouterx64.lib")
#else
#pragma comment(lib, "../../../Dist/Lib/Windows/x86/DynamsoftLicensex86.lib")
#pragma comment(lib, "../../../Dist/Lib/Windows/x86/DynamsoftCorex86.lib")
#pragma comment(lib, "../../../Dist/Lib/Windows/x86/DynamsoftCaptureVisionRouterx86.lib")
#endif
#endif
int main()
{
int errorCode = 1;
char errorMsg[512];
// Initialize license.
// The string 'DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9' here is a free public trial license. Note that network connection is required for this license to work.
// You can also request a 30-day trial license in the customer portal: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=samples&package=c_cpp
errorCode = CLicenseManager::InitLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", errorMsg, 512);
if (errorCode != ErrorCode::EC_OK && errorCode != ErrorCode::EC_LICENSE_WARNING)
{
cout << "License initialization failed: ErrorCode: " << errorCode << ", ErrorString: " << errorMsg << endl;
}
else
{
CCaptureVisionRouter *cvRouter = new CCaptureVisionRouter;
string imageFile = "../../../Images/GeneralBarcodes.png";
CCapturedResultArray* resultArray = cvRouter->CaptureMultiPages(imageFile.c_str(), CPresetTemplate::PT_READ_BARCODES);
int count = resultArray->GetResultsCount();
for (int i = 0; i < count; ++i)
{
const CCapturedResult* result = resultArray->GetResult(i);
if (result->GetErrorCode() == ErrorCode::EC_UNSUPPORTED_JSON_KEY_WARNING)
{
cout << "Warning: " << result->GetErrorCode() << ", " << result->GetErrorString() << endl;
}
else if (result->GetErrorCode() != ErrorCode::EC_OK)
{
cout << "Error: " << result->GetErrorCode() << "," << result->GetErrorString() << endl;
}
int pageNumber = i + 1;
// It is usually necessary to determine 'ImageTagType' based on the original image tag.
// Since imageFile is used, it is directly converted to 'const dynamsoft::basic_structures::CFileImageTag *'.
const CFileImageTag *tag = dynamic_cast<const CFileImageTag *>(result->GetOriginalImageTag());
if(tag != nullptr)
{
pageNumber = tag->GetPageNumber() + 1;
}
CDecodedBarcodesResult* barcodeResult = result->GetDecodedBarcodesResult();
if (barcodeResult == nullptr || barcodeResult->GetItemsCount() == 0)
{
cout << "No barcode found in page " << pageNumber << endl;
}
else
{
int barcodeResultItemCount = barcodeResult->GetItemsCount();
cout << "Page " << pageNumber << " decoded " << barcodeResultItemCount << " barcodes" << endl;
for (int j = 0; j < barcodeResultItemCount; j++)
{
const CBarcodeResultItem* barcodeResultItem = barcodeResult->GetItem(j);
cout << "Result " << pageNumber << "-" << j + 1 << endl;
cout << "Barcode Format: " << barcodeResultItem->GetFormatString() << endl;
cout << "Barcode Text: " << barcodeResultItem->GetText() << endl;
}
}
if (barcodeResult)
barcodeResult->Release();
}
if (resultArray)
resultArray->Release();
delete cvRouter, cvRouter = NULL;
}
cout << "Press any key to quit..." << endl;
cin.ignore();
return 0;
}