Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Problem with PRINT permissions in the Adobe API in my code

New Here ,
Sep 30, 2021 Sep 30, 2021

Hello team;

I am writing here because the community has referred me to this thread for the third time.

 

I need help with a "print" instruction in my own code.

In my code, I have created a tool that allows me to edit and lock my own reports pdf wit ADOBE API.

but after that i can't print it and i think i put the correct function; addPermissions .... "PRINT" ...

Can you help me with that?

 

example:

.....
      permissions.addPermission(protectPDFOptions.Permission.PRINT_LOW_QUALITY)
      permissions.addPermission(protectPDFOptions.Permission.EDIT_DOCUMENT_ASSEMBLY)
      permissions.addPermission(protectPDFOptions.Permission.COPY_CONTENT)
      const options = new protectPDFOptions.PasswordProtectOptions.Builder()
        .setOwnerPassword(config.pdf_lock_password)
        .setPermissions(permissions)
        .setEncryptionAlgorithm(protectPDFOptions.EncryptionAlgorithm.AES_256)
 .setContentEncryption(protectPDFOptions.ContentEncryption.ALL_CONTENT_EXCEPT_METADATA)
        .setContentEncryption(protectPDFOptions.ContentEncryption.ALL_CONTENT)
     ......

info: https://opensource.adobe.com/pdfservices-node-sdk-samples/apidocs/latest/PasswordProtectOptions.html...

TOPICS
How to , PDF Services API
350
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 13, 2021 Oct 13, 2021

Hello team, can someone from the community help me with this?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Oct 13, 2021 Oct 13, 2021

I know nothing about this API, but I know something about PDF protection. You say "I can't print it" but there are many causes of this.

1. What exact response do you get when using File > Print in Acrobat/Reader (or is it greyed out)?

2. Please show a screen shot of document security property dialog from Acrobat/Reader.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 13, 2021 Oct 13, 2021
LATEST

Hi, thanks for your answer.

 

In the next screen shot you can check it.

 

Adepedro_0-1634131327914.pngexpand image

 

but this API function in my code doesn't work and it should allow printing.

 

      permissions.addPermission(protectPDFOptions.Permission.COPY_CONTENT)

 

😞

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources