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
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.
14
14
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.
16
16
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
19
18
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.
24
20
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:**
28
22
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:**
30
40
Use `dumpbin` command line tool to check dependency.
31
41
32
42
```
33
-
dumpbin/dependents your_ddl_file.ddl
43
+
dumpbin/dependents your_ddl_file.ddl
34
44
```
35
45
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.
0 commit comments