-
-
Notifications
You must be signed in to change notification settings - Fork 579
Closed
Labels
Description
- Your issue is based on the latest commit
YES - State your OS and OS version
Linux
pdfcpu/pkg/pdfcpu/configuration.go
Lines 170 to 171 in 11d755a
| // Supplied user access permissions, see Table 22. | |
| Permissions int16 |
I can only find 3 permission listed here
pdfcpu/pkg/pdfcpu/configuration.go
Lines 46 to 52 in 11d755a
| PermissionsAll int16 = -1 // 0xFFFF | |
| // PermissionsPrint disables all user access permissions bits except for printing. | |
| PermissionsPrint int16 = -1849 // 0xF8C7 | |
| // PermissionsNone disables all user access permissions bits. | |
| PermissionsNone int16 = -3901 // 0xF0C3 |
But there is more permission bit listed here
How can I calc them myself ?