Encrypted PDF's

Is it possible to view and unlock encrypted PDF's using iBooks? If not are there any other apps that can accomplish this task?
Thanks

Do you want to read PDF directly on the new released iBooks 1.1? I feel reading experience is better with EPUB format. Do you think so? Reading PDFs on iBooks is slower and doesnot support flipping pages on iPads.
SO I always stick to converting my PDFs to EPUB and transfer them on my iPad to read. And here is a detailed tutorial of How to Convert PDF to EPUB on Mac.
Hope it can do you a favor.

Similar Messages

  • Conversion of postscript (converted from secure or encrypted pdf) to pdf

    I have a postscript file which has been created from secure or encrypted (opening restriction) pdf.
    Now when i use distiller to convert this postscript file to pdf then distiller cannot produce a pdf file.
    The log file contains following text:
    This PostScript file was created from an encrypted PDF file.
    Redistilling encrypted PDF is not permitted.
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    1) Is there a way to convert this postscript file into pdf ?
    I have a limitation that i cannot remove security from secure pdf.
    2) Do distiller provide any settings which can be changed to convert
    this kind of ps(from secure pdf) to pdf.
    3) Can we provide password to distiller during process of conversion to
    pdf.
    4) If above methods do not work then is there a way we can
    programatically using Distiller Api's for conversion to pdf.
    Like methods 'FileToPdf' etc.
    Thanks in advance.

    I am facing a similar problem.
    My workflow dictates that I convert the input PDF job initially to PS and finally back to PDF. If the input PDF file is secure (it's not encrypted - you will still be able to open the document), the redistillation of PS to PDF fails while using Normalizer 6.0 && 9.0 libraries. If I use Normalizer 505 library, the redistillation succeeds. I have checked with the same generated PS on both Distiller 6.0 && 9.0, and both the versions fail to reconvert as well. I am a little surprised that 6.0 and 9.0 will fail to do something that 505 library manages.
    Any suggestions?

  • Encrypted PDF file open error

    Hi All,
    problem is when i open to outlook to check mail at that time i got mail but attached file is not open which is encrypted file
    so please help how to open attached file following process i do .
    1: convert otf to pdf file
    2: download pdf file into application server
    3:encrypt pdf file with password protect
    4:upload pdf file from application server
    5:send mail
    1. OTR TO PDF
    CALL FUNCTION 'CONVERT_OTF'
       EXPORTING
         format                      = 'PDF'
         max_linewidth               = 132
    *   ARCHIVE_INDEX               = ' '
    *   COPYNUMBER                  = 0
    *   ASCII_BIDI_VIS2LOG          = ' '
    *   PDF_DELETE_OTFTAB           = ' '
       IMPORTING
         bin_filesize                = gv_bin_filesize
    *   BIN_FILE                    =
        TABLES
          otf                         = gt_otf
          lines                       = gt_pdf_tab
       EXCEPTIONS
         err_max_linewidth           = 1
         err_format                  = 2
         err_conv_not_possible       = 3
         err_bad_otf                 = 4
         OTHERS                      = 5.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    then download pdf file into application server using following code
    OPEN DATASET l_file FOR OUTPUT IN BINARY MODE  .
      IF  sy-subrc = 0 .
        LOOP AT gt_pdf_tab.
          TRANSFER gt_pdf_tab TO l_file .
        ENDLOOP.
        CLOSE DATASET l_file  .
      ELSE.
        WRITE : / 'operating system could not open file' .
      ENDIF.
    *Then i use command line mode Encryptpdf, from verypdf.com, *
    so successfuly file encrypted and password protected.*
    Then upload pdf filw which is encrypted form application server
    OPEN DATASET to_file FOR INPUT IN BINARY MODE.
      IF sy-subrc = 0.
        DO .
          READ DATASET to_file INTO gs_objbin. "GS_PDF_TAB.
          IF sy-subrc = 0.
            APPEND gs_objbin TO gt_objbin .  "GS_PDF_TAB TO GT_PDF_TAB.
          ELSE.
            EXIT.
          ENDIF.
        ENDDO.
        CLOSE DATASET to_file.
      ENDIF.
    then i use use FM SO_NEW_DOCUMENT_ATT_SEND_API1
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data                    = gs_docdata
         put_in_outbox                    = 'X'
         commit_work                      = 'X'
    * IMPORTING
    *   SENT_TO_ALL                      =
    *   NEW_OBJECT_ID                    =
        TABLES
          packing_list                     = gt_objpack
    *   OBJECT_HEADER                    =  I_OBJTXT
         contents_bin                     = gt_objbin
         contents_txt                     = i_objtxt
    *   CONTENTS_HEX                     =
    *   OBJECT_PARA                      =
    *   OBJECT_PARB                      =
          receivers                        = gt_reclist
       EXCEPTIONS
         too_many_receivers               = 1
         document_not_sent                = 2
         document_type_not_exist          = 3
         operation_no_authorization       = 4
         parameter_error                  = 5
         x_error                          = 6
         enqueue_error                    = 7
         OTHERS                           = 8
    Edited by: Krupaji on Oct 27, 2010 11:31 AM

    Related FM SO_NEW_DOCUMENT_ATT_SEND_API1 you can check following example:
    clear : gs_docdata,gt_objbin. "
        refresh : gt_objbin . "
    *   gs_docdata-obj_name = 'ord_accept'.
        gs_docdata-obj_name = 'Invoice'.
        gs_docdata-expiry_dat = sy-datum + 10.
    *   gs_docdata-obj_descr = 'Your Invoice No : '.
        gs_docdata-obj_descr = detail1.
        gs_docdata-sensitivty = 'F'. "Functional object
        gs_docdata-doc_size = gv_desc_lines * 255.
        clear gs_objpack-transf_bin.
    * Start line of object header in transport packet
    *    GS_OBJPACK-TRANSF_BIN = 'X'.
        gs_objpack-doc_size = gv_desc_lines * 255.
        gs_objpack-head_start = 1.
        gs_objpack-head_num = 0.
        gs_objpack-body_start = 1.
        gs_objpack-body_num = gv_desc_lines.
        gs_objpack-doc_type = 'RAW'.
    *    GS_OBJPACK-OBJ_NAME = 'ORDER_ACCEPTANCE'.
    *    GS_OBJPACK-OBJ_DESCR = 'ORDER_ACCEPTANCE.PDF'.
        append gs_objpack to gt_objpack.
      endif.
    *• Passing the SAP Script text lines to SAPoffice: Single List with Column Length 255 table
      clear : gs_objbin, gs_pdf_tab.
    *&      Encrypted file
      filename = name.
      if name is initial.
        concatenate   'd:\pdf\' main_dtl-vbeln '.PDF' into name.
      filename = name.
    endif.
    data: pdf type ref to cl_hrasr00_pdf_generation.
      data : lt_data            type solix_tab.
      open dataset filename for input in binary mode.
      if sy-subrc eq 0.
        read dataset filename into filex.
      endif.
      if filex is not initial.
        call function 'SCMS_XSTRING_TO_BINARY'
          exporting
            buffer        = filex
          importing
            output_length = file_length
          tables
            binary_tab    = gt_objbin.
      endif.
      close dataset filename.
    describe table gt_objbin lines gv_tab_lines.
      clear gs_objbin.
      read table gt_objbin into gs_objbin index gv_tab_lines.
      if sy-subrc = 0.
        gs_objpack-doc_size = ( gv_tab_lines - 1 ) * 255 + strlen( gs_objbin ).
        gs_objpack-transf_bin = 'X'.
        gs_objpack-head_start = 1.
        gs_objpack-head_num = 0.
        gs_objpack-body_start = 1.
        gs_objpack-body_num = gv_tab_lines.
        gs_objpack-doc_type = 'PDF'.
        gs_objpack-obj_name = 'INVOICE'.
        gs_objpack-obj_descr = 'Invoice Order'.
        append gs_objpack to gt_objpack.
      endif.
    call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        exporting
          document_data                    = gs_docdata
         put_in_outbox                    = 'X'
         commit_work                      = 'X'
    * IMPORTING
    *   SENT_TO_ALL                      =
    *   NEW_OBJECT_ID                    =
        tables
          packing_list                     = gt_objpack
    *   OBJECT_HEADER                    =  I_OBJTXT
         contents_bin                     = gt_objbin
         contents_txt                     = i_objtxt
    *   CONTENTS_HEX                     =
    *   OBJECT_PARA                      =
    *   OBJECT_PARB                      =
          receivers                        = gt_reclist
       exceptions
         too_many_receivers               = 1
         document_not_sent                = 2
         document_type_not_exist          = 3
         operation_no_authorization       = 4
         parameter_error                  = 5
         x_error                          = 6
         enqueue_error                    = 7
         others                           = 8
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      else.
        open dataset name for input in binary mode.
        if sy-subrc eq 0.
          delete dataset filename.
        endif.

  • Preserving filename when encrypting PDFs in Preview

    Dear All,
    When I encrypt PDFs using Preview in the normal way (Print -> PDF -> Set Security) everything works fine and the filename is preserved. However if I do this in Automator the filename gets given an alphanumeric name. I don't understand why this is. When I open that file, it asks for the password that I had originally set and it reveals the document.
    My workflow is like the following:
    Get Selected Finder Items (i am only selecting doc not docx)
    Convert Format of Word Documents (to pdfs)
    Encrypt PDF (Picked out from the Documet list)
    Move Finder Items (To desktop)
    Quit Application (Word in this case)
    All of the above seems to be just fine only that the filename gets converted to something else.
    On the system.log file I get the following entries (hope this helps!)
    Feb 1 12:07:10 Macintosh [0x0-0x300300].com.apple.Preview[17593]: Sun Feb 1 12:07:10 Macintosh.home Preview[17593] <Error>: CGCryptorProcessBytes: CCCryptorUpdate failed: error -4300.
    Feb 1 12:07:42: --- last message repeated 2 times ---
    Feb 1 12:09:38 Macintosh mdworker[17730]: (Error) Import: Importer force killed!
    Feb 1 12:09:38 Macintosh com.apple.launchd[1] (0x1004a0.mdworker[17730]): Exited with exit code: 1
    Feb 1 12:10:42 Macintosh /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/Microsoft Word[18057]: CPSGetProcessInfo(): This call is deprecated and should not be called anymore.
    Feb 1 12:10:42 Macintosh /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/Microsoft Word[18057]: CPSPBGetProcessInfo(): This call is deprecated and should not be called anymore.
    Feb 1 12:10:54 Macintosh /Applications/Automator.app/Contents/MacOS/Automator[4259]: setting security information: /Users/rjani5/Desktop/1zwCC1.pdf: Operation not permitted
    Many thanks in advance.
    Kind regards,
    Vnayak

    I played with the encrypt pdf action and it seems buggy. it can't replace the original (non-encrypted) pdf. instead it creates a temp file with a random alpha-numeric name and passes it to the next action. the way around it as i see it should be to first save the name of your word file in a text variable and after the encrypt action (or maybe after the move action) rename the resulting file. "rename finder items" doesn't seem to want to accept variables so you'll have to do the renaming via apple or shell script.

  • How to change the font and size in the fillable field of an encrypted PDF file?

    hi!
    I’d like to change the font and size in the fillable field of an encrypted PDF file I-485 from www.uscis.gov/files/form/i-485.pdf
    I’m using Adobe Acrobat Pro 9 in Windows XP. I firstly tried Adobe LiveCycle Designer, but the I-485 file requires password to be opened, which I don’t know.
    Then I tried to print it to a PDF file, and use the Typewriter tool to fill in the form. But got error message while printing it to PDF file:
    This PostScript file was created from an encrypted PDF file.
    Redistilling encrypted PDF is not permitted.
    The I-485 file can be exported to unencrypted postscript file, but got the same error message while trying to open the ps file.
    I don’t know much about pdf file, can anyone please help?
    Thanks a lot!

    Ask the creator of the file for a unprotected version.

  • Adobe 9.5.5 crashes on attempt to open encrypted pdf

    Quoting from online chat that was unsuccessful in resolving this(these) question(s)
    Fred: The sender said
      Fred: The senter of the document says "After all voting selections have been made to the ballot, CLICK on the red “Click Here to Finalize Selections” button located on the Ballot Image at the top or bottom right hand corner. By clicking the red “Click Here to Finalize Selections” button on the ballot image, it will generate a PDF of all needed materials which include your FPCA Voter Instructions, Declared Write-In candidates, if applicable, Security Envelope, Carrier Envelope and your personal Ballot. Note: you WILL NOT be able to get back into the program if you have already clicked to finalize your selections button. After clicking “Click Here to Finalize Selections” button, the generated PDF will ask you to click Open or Save, please CLICK Save As and then specify the save location onto your computer. "
      Fred: is there an online service I can use to do that?
    It should be noted that the system is 64 bit Linux (Mageia 3), and Arcobat 9.5.5 is the newest version available for that system.  Also, 9.5.5 seems to be able to handle "normal" pdf files without a problem, on this OS.
    Thank you in advance for any help you may be able to offer
    Regards
    Fred James

    OS: Mageia 3 64-bit, Adobe Acrobat Reader 9.5.5 (latest version available for this OS ... normally works for Adobe Acrobat PDF files (protable document files ... as in created by Adobe Acrobat)
    I was sent an encrypted PDF file, which I was instructed to
         download and save
         open the downloaded file
         fill in the file (mouse clicks)
         and "finalize" the file (mouse click)
         and when the option was offered, save the resulting file
    This is supposed to then generate some additional pages of information, also in PDF format.
    Problem ... attempting to open this downloaded, encrypted PDF, crashes the Acrobat Reader (9.5.5).  To be specific
         open Acrobat Reader
         File -> Open
         select the file in question
         click open
         Acrobat Reader closes/vanishes from the screen.

  • Trouble opening LiveCycle DRM-encrypted PDFs in Adobe Acrobat v.10.0.2

    LiveCycle DRM-encrypted PDFs open fine in Adobe Acrobat v. 9, v. 10.1.7, and v. 11. Why don't they open in v. 10.0.2? Is this a known problem? My company is UNABLE to upgrade or downgrade to another version of Adobe at this time, but we need to be able to open these PDFs with version 10.0.2. What is the solution? I get the following message when attempting to open these PDFs:

    pharmalib wrote:
    And, if there is a bug, is there any solution other than to upgrade to the next version?
    Usually bugs are fixed in updated software versions; what kind of other solution do you expect?
    Actually, looking at ftp://ftp.adobe.com/pub/adobe/reader/win/10.x/ I see that 10.0.2 has been removed completely, so this appears to have been an especially buggy version.

  • Metadata of encrypted PDF in iBooks

    Hello everyone,
    I got some encrypted PDF-files (document's content without meta-data is encrypted, opening files without keyword is possible, keyword required for modifying the file).
    The meta-data of these files (author, title) are readable in applications as like Adobe Reader oder Adobe Digital Editions.
    Using a Text Editor, I can see the meta-data in the XMP of the PDF-file.
    Unfortunately, the author and title are shown in cryptic letters in iBooks.
    Does that mean, iBooks doesn't support the XMP-Meta-data?
    Is this a possible feature of upcoming versions of iBooks?
    Anybody out there knowing about an other App supporting XMP in PDF?
    Thanks for your input,
    Thomas Mertens

    Is this a possible feature of upcoming versions of iBooks?
    You are just talking to other users like yourself here, and nobody knows what Apple plans for future improvements in this app. Tell them you want it via feedback:
    http://www.apple.com/feedback/

  • How do I print to "Adobe PDF" with an encrypted pdf?

    I've created a form in livecycle and I want the security to be set up as such:
    1) A password is required to edit the form in LiveCycle AND
    2) People can print the pdf to "Adobe PDF"
    I've been able to create livecycle password access, but when I put a password on the LiveCycle Access (currently: Printing Allowed: High resolution, Changes Allowed: Filling in form fields and signing existing signature fields), I get this error when I try to print it to PDF:
    %%[ ProductName: Distiller ]%%
    This PostScript file was created from an encrypted PDF file.
    Redistilling encrypted PDF is not permitted.
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    How can I edit my form so I can do both.

    It´s quite some time I was solving this.. but as I already wrote and I can somehow remember(as far I´m not working on this platform for 3 years): printing 150dpi is one thing - it´s printing like a simple pic. Printing in hi-res works in completely different way - pdf must be redistilled with pdf distiller or how it was called. Means, there must be additional step before printing the pdf form. Cant remember the details.

  • Unable to save a copy of encrypted pdf with Acrobat Pro 10.0

    I create an encrypted pdf using prince a tool to convert HTML documents to pdf. I am unable to save a copy of the pdf file when i use Acrobat Pro 10.0.
    It displays the following error
    "The document could not be saved. There was a problem reading this document(21)."
    However Acrobat Reader (basic) allows me to do so.
    I am also able to save a copy of the document with Acrobat pro 7. I raised this issue with Prince and they told me that it could probably be a bug/unwanted behaviour with Acrobat Pro 10.0
    My system environment details:
    OS: Windows xp
    Acrobat Pro: 10.0.0
    Acrobat Reader: 10.1.0

    Use the forum for Adobe Acrobat.

  • This PostScript file was created from an encrypted PDF file.

    I have a postscript file which has been created from secure or encrypted (opening restriction) pdf.
    Now when i use distiller to convert this postscript file to pdf then distiller cannot produce a pdf file.
    The log file contains following text:
    This PostScript file was created from an encrypted PDF file.
    Redistilling encrypted PDF is not permitted.
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    1) Is there a way to convert this postscript file into pdf ?
    I have a limitation that i cannot remove security from secure pdf.
    2) Do distiller provide any settings which can be changed to convert
    this kind of ps(from secure pdf) to pdf.
    3) Can we provide password to distiller during process of conversion to
    pdf.
    4) If above methods do not work then is there a way we can
    programatically use Distiller Api's for conversion of postscript (in case
    of postscript created from secure pdf) to pdf
    Like methods 'FileToPdf' etc.
    Thanks in advance.

    I am facing a similar problem.
    My workflow dictates that I convert the input PDF job initially to PS and finally back to PDF. If the input PDF file is secure (it's not encrypted - you will still be able to open the document), the redistillation of PS to PDF fails while using Normalizer 6.0 && 9.0 libraries. If I use Normalizer 505 library, the redistillation succeeds. I have checked with the same generated PS on both Distiller 6.0 && 9.0, and both the versions fail to reconvert as well. I am a little surprised that 6.0 and 9.0 will fail to do something that 505 library manages.
    Any suggestions?

  • Problem while generating Encrypted PDF in batch

    Hi PPl
    I am generating encrypted PDF in batch. I have one requirement to generate about 1 lakh PDFs.
    But when i start my batch initially it works fine but after generating round about 25 PDF my program get
    stuck at Document.copyToFile method and after that it again generates around 5-6 PDF and stops for a while
    at the same place.
    I have tried the same program to generate PDF without Encryption and it works very fine.
    Guys i need your help to solve this issue.
    Waiting for your valuable inputs.
    Thanks

    Moved to the Java Development - Crystal Reports forum.
    Ludek

  • Index/catalog & encrypt PDF files

    Hi,
    I wish to archive thousands of PDF invoices. I can do this quite easily by putting them on a CD or DVD and creating a catalog Index... however I also wish to encrypt each document and password protect it. Again this is easily achieved by creating a batch process to add Security. When I have done this the catalogue index does not work anymore - it doesn't work either when I select "Encrypt all documents except metadata (acrobat 6 and later compatible)".
    Does anyone know how to index/catalog & encrypt PDF files?
    I use Vista SP1 & Acrobat pro Extended 9.0.0
    Thanks.
    Elfed.

    Right of course, I'm a little tired this morning.
    I copied over my new js file(s) to the C:\Program Files\Adobe\Acrobat 8.0\Acrobat\Javascripts folder.
    Now that I have done that, I run the following code and get the error shown at the bottom:
     Type AcrobatCAcroAppType;AcrobatCAcroAppType =
    Type.GetTypeFromProgID("AcroExch.AVDoc"); 
    CAcroAVDoc avDoc = (Acrobat.CAcroAVDoc)Activator.CreateInstance(AcrobatCAcroAppType); 
    Type AcrobatPDDocType;AcrobatPDDocType =
    Type.GetTypeFromProgID("AcroExch.PDDoc"); 
    CAcroPDDoc pdDoc = (Acrobat.CAcroPDDoc)Activator.CreateInstance(AcrobatPDDocType); 
    try
     if (avDoc.Open(fileName, "")) //open the PDF
    pdDoc = (CAcroPDDoc)avDoc.GetPDDoc(); 
    Object jsAcroObj = pdDoc.GetJSObject(); 
    Type T = jsAcroObj.GetType(); 
    object[] saveAsParam = { "test" };T.InvokeMember(
    "TestFunction", BindingFlags.InvokeMethod | BindingFlags.Public | BindingFlags.Instance, null, jsAcroObj, saveAsParam); 
    Console.WriteLine("\tExport complete."); 
    if (avDoc.Close(1) != true) avDoc.Close(1);}
    else Console.WriteLine("Cannot open: " + fileName);}
    catch (Exception ex){
    Console.WriteLine(ex);}
    Code fails at
    T.InvokeMember line with the following error:
    System.Runtime.InteropServices.COMException (0x80020006): Unknown name. (Exception from HRESULT: 0x80020006 (DISP_E_UNKNOWNNAME))

  • Print an Encrypted PDF

    IN Leopard I could choose the PDF option in the Print Window and select Save as Encrypted PDF. This is gone in Snow Leopard. Does anyone know how to make an encrypted PDF without additional software? Or to edit that menu to include the Encrypted PDF option.
    I did find you can do it in Preview via the Save As command, but I would like to maybe print a page from Firefox as have it become an encrypted PDF without going into Preview as a second step.
    x-.-x

    It allows you to assign a password for opening the document, but I do not see an encryption option. Maybe it is encrypted when using the password option. I am not sure.
    Thank you for pointing out the security options. Good to know those are there.
    x-.-x

  • Encrypted PDF showing as "Untitled" in iBooks reading view

    I've added an encrypted PDF file to iTunes and synced it with my iPad.
    Before doing so, I opened the PDF with Adobe Acrobat Pro and edited the metadata to include the document title (which is identical to the filename). I then password-protected it, selecting the option that encrypts all content except for metadata.
    In iBooks, the PDF is displayed with its correct title in Library view but when I input the password and open it, the overlay text in Reading view says it is "Untitled".
    However, if I add it to iTunes as an unencrypted PDF it displays correctly in both Library and Reading view.
    I would prefer it if I could keep this file encrypted. I know it's just a minor inconvenience but I can't see why the title should fail to display in Reading view once I've opened it.

    Update:
    I went to the Genius Bar at a local Apple Store yesterday and was given the following steps that will remedy the problem with the PDF's
    Drag and Drop PDF's directlty from MY Documents (if you are using a PC with Windows XP) and put the PDF's Directly into the Book section in the Library in iTunes.
    Then Sync the iPhone in iTunes and the PDF's will display with the names you have chosen.
    Do Not Email the PDF's and open them in iBooks or the PDF's will display with the name Untitled.
    Note: Be sure to delete the PDF's that are displaying as "Untitled" from the iPhone first as well as the PDF's that are on iTunes as the original cryptic PDF File Name. Then Drag and Drop a fresh Copy of the PDF's and put them into iTunes. After syncing the PDF's will display in iBooks with the name you have chosen.

  • Why do encrypted PDfs now appear as blank pages?

    Since installing Snow Leopard all of my encrypted PDFs appear as blank pages once I type in the password. I was wondering if anyone knew how and if this can be fixed.

    I'm sorry, but in what way?
    Do you mean the encrypted document you want to view shows nothing but a blank page when you give the password?
    Or do you mean the icon for the PDF is blank and doesn't show a preview? I'd imagine that's because it's encrypted and so probably assumes a preview shouldn't be shown.
    Or do you mean encrypting the PDF document causes the document to initially appear blank? Is it still blank once you close it, reopen it and provide the password?
    Maybe some steps of what you are doing so it can be replicated by others to try out, too.

Maybe you are looking for

  • Libreoffice and Firefox take ages to start, get stuck at polling

    Hello. Whenever I launch Firefox or Libreoffice, they take around 15-20 seconds to start. I'm not using the Libreoffice Quickstarter here. When I searched online for others who've faced the same problem, I found this problem to afflict Firefox 4 and

  • Install brushes in Photoshop CS5.1

    Hi I am attempting to install these brushes to Photoshop CS 5.1 I have previously used them in Photoshop CS4 64 Bit Extended I went through the same process - put the ABR file into Presets>Brushes but the brushes do not appear in Photoshop even when

  • T420s + 2 monitor + integrated screen setup. How make it work?

    Hi All. I'm trying to make my T420s with integrated grahpics only work in a 3 screen setup. Im using no docking station but the configuration is said to be supported. But the software simply switches of one monitor when i activate the other and vise

  • Validate related invoices from pl/sql?

    Hello, Does anybody know how to run "validate related invoices" from pl/sql? thanks in advance!

  • Incorrect value of OCI Parameter NEW_ITEM-VENDOR from punch out catalog

    Dear Experts, We have defined an external punchout catalog under IMG activity Define External Web Services. Under the Source of Supply Assigned to Product Catalog  we maintained business partner of a particluar vendor but when I check the data receiv