Skip to content

Commit b249135

Browse files
committed
update
1 parent 75357d4 commit b249135

File tree

1 file changed

+26
-20
lines changed

1 file changed

+26
-20
lines changed

faq/general/error-10022-the-PDF-DLL-is-missing.md

Lines changed: 26 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: default-layout
33
title: How to resolve error -10022 the PDF DLL is missing?
4-
keywords: Dynamsoft Barcode Reader, FAQ, Dependency, General, ensure no overuse
4+
keywords: Dynamsoft Barcode Reader, FAQ, Dependency, General, pdf, missing
55
description: How to resolve error -10022 the PDF DLL is missing?
66
needAutoGenerateSidebar: false
77
---
@@ -10,35 +10,41 @@ needAutoGenerateSidebar: false
1010

1111
[<< Back to FAQ index](index.md)
1212

13-
The error message "-10022 The PDF DLL is missing" suggests that the Dynamsoft Barcode Reader is looking for a DLL file, which is typically used in Windows environments,rather than a shared object (SO) file, which is used in Linux environments. However,you might also encounter same error message in Linux (They indicate the same issue), since we have unified error message library. This error occurs when the necessary PDF library files required for handling PDF files is either missing or required dependencies not in correct path.
13+
The error message `-10022 The PDF DLL is missing` indicates that the Dynamsoft Barcode Reader is looking for a PDF DLL file, which is typically used in Windows environments. However, this error message may also appear in Linux environments, as both cases point to the same issue due to a shared error message library.
1414

15-
# To resolve this isuue you could try following method
15+
This error occurs when the necessary PDF library files required for handling PDF files are either missing or the required dependencies are not in the correct path.
1616

17-
- General Solution:
18-
Please check if the PDF library files are located in the same directory as the Dynamsoft Barcode Reader library (e.g. DynamsoftBarcodeReaderx64.dll). If they are not, kindly copy the PDF library files to that location and try again. If you still have this issue, please refer to next step based on your OS.
17+
### To resolve this issue you could try the following methods
1918

20-
- For Windows:
21-
`DynamicPdf.dll` // If you are using Winodws x86
22-
`DynamicPdfCore.dll` // If you are using Winodws x86
23-
`DynamicImage.dll` // If you are using Winodws x86
19+
Please check if the PDF library files are located in the same directory as the Dynamsoft Barcode Reader library (e.g. DynamsoftBarcodeReaderx64.dll). If they are not, kindly copy the PDF library files to that location and try again.
2420

25-
`DynamicPdfx64.dll` // If you are using Winodws x64
26-
`DynamicPdfCorex64.dll` // If you are using Winodws x64
27-
`DynamicImage.dll` // If you are using Winodws x64
21+
**For Windows:**
2822

29-
To check if all dependencies is properly installed, you could use following method:
23+
- `DynamicPdf.dll` // for Windows x86
24+
25+
- `DynamicPdfCore.dll` // for Windows x86
26+
27+
- `DynamicPdfx64.dll` // for Windows x64
28+
29+
- `DynamicPdfCorex64.dll` // for Windows x64
30+
31+
**For Linux:**
32+
33+
- `libDynamicPdf.so`
34+
35+
- `libDynamicPdfCore.so`
36+
37+
If you still have this issue, please check if all dependencies are installed based on your OS.
38+
39+
**For Windows:**
3040
Use `dumpbin` command line tool to check dependency.
3141

3242
```
33-
dumpbin/dependents your_ddl_file.ddl
43+
dumpbin/dependents your_ddl_file.ddl
3444
```
3545

36-
- For Linux:
37-
`libDynamicPdf.so`
38-
`libDynamicPdfCore.so`
39-
`libDynamicImage.so`
40-
41-
To resolve this issue, please run following command on console to check if all dependencies are installed
46+
**For Linux:**
47+
Run the following command on the console to check if all dependencies are installed.
4248

4349
```
4450
ldd /lib/libDynamicPdf.so

0 commit comments

Comments
 (0)