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
@@ -42,6 +42,15 @@ Although both variants ensure that documents can be reliably displayed in the fu
42
42
For most use cases, we recommend using **`pdf/a-2b`**.
43
43
It offers better compression support, fewer limitations, and higher compatibility with modern PDFs while still meeting archival requirements.
44
44
45
+
### Licensing Requirements
46
+
Dynamic Web TWAIN does not require any add-on license to **export** or generate PDF or PDF/A files. However, PDF-Rasterizer Addon would be required when **loading** a PDF/PDF-A file that contains **text or vector graphics**.
47
+
48
+
You can programmatically check whether a file needs rasterization using [`IsRasterizationRequired()`](/_articles/info/api/Addon_PDF.html#israsterizationrequired):
49
+
50
+
```javascript
51
+
DWTObject.Addon.PDF.IsRasterizationRequired(path); // returns true or false
52
+
```
53
+
45
54
### Behavior and Defaults
46
55
47
56
- If you do not set `pdfaVersion`, the export uses standard PDF format (non-PDF/A).
breadcrumbText: How can I load PDF/A files into the Dynamic Web TWAIN SDK?
8
8
description: How can I load PDF/A files into the Dynamic Web TWAIN SDK?
9
9
date: 2021-12-01 01:09:41 +0800
10
-
last_modified: 2022-10-21 14:05:54 +0800
10
+
last_modified: 2025-12-10 15:53:54 +0800
11
11
---
12
12
13
13
# Addon
14
14
15
15
## How can I load PDF/A files into the Dynamic Web TWAIN SDK?
16
16
17
-
You can use the PDF Rasterizer add-on which supports reading PDF/A images.
17
+
Dynamic Web TWAIN can load PDF/A files, but whether the PDF Rasterizer add-on is required depends on the content of the PDF/A file:
18
18
19
-
If the PDF Rasterizer add-on is used, the file will automatically be rasterized when it's loaded to the viewer.
19
+
- If the PDF/A contains text or vector graphics, it must be rasterized, and therefore requires the PDF Rasterizer add-on.
20
+
- If the PDF/A contains only raster images, it can be loaded without the PDF Rasterizer.
20
21
21
-
### When is PDF Rasterizer effective?
22
+
You can programmatically check whether a file needs rasterization using [`IsRasterizationRequired()`](/_articles/info/api/Addon_PDF.html#israsterizationrequired):
22
23
23
-
Once `PDFR` has been configured, it will automatically detect if a file needs to be rasterized and if so, it will convert it to an image(s) with the set resolution(if no resolution is set, the default is 200). This happens when you call any of the following methods
24
+
```javascript
25
+
DWTObject.Addon.PDF.IsRasterizationRequired(path); // returns true or false
26
+
```
24
27
25
-
> `PDFR` also works when you drag and drop the file onto the viewer to load it
28
+
When enabled, the add-on automatically rasterizes PDF/A documents into images when they are loaded into the viewer.
29
+
30
+
> [!NOTE]
31
+
> **Looking for information about generating PDF/A files?**
32
+
> Starting from Dynamic Web TWAIN 19.3, PDF/A creation is supported.
33
+
> See: [How can I generate PDF/A files?](/_articles/faq/generate-pdf-files.md)
34
+
35
+
36
+
### When is PDF Rasterizer used?
37
+
38
+
Once the PDF Rasterizer (`PDFR`) is configured, it automatically rasterizes the file *only when needed*.
39
+
If rasterization is required, the PDF is converted into one or more images at the specified resolution (default **200 DPI**).
40
+
41
+
Rasterization may occur when using any of the following APIs (including drag-and-drop):
0 commit comments