Read text and edit pdf document in IAC

Ask a Question related to Adobe Acrobat SDK, Design and Development.

  1. #1

    Default Read text and edit pdf document in IAC

    Hi all,

    I'm newbie in Acrobat SDK, now I start with IAC (InterAppCommunication) in C#.

    Is there anyway to read each line from a pdf document? And how to directly edit a pdf document?

    I already look at all examples in \InterAppCommunicationSupport\C#Samples but it's seem to be nothing helpful.

    Please give me some sample source codes or links.

    Thank you in advance, :)
    tataxin@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Edit Document Template
      I used to have an extension that worked great. It was designed by "Shimmerphase Development" the extension was named "update document template" or...
    2. Word Document Becomes Read Only
      I administer Contribute for my organization and have recently come across this problem that has me stumped: The scenario is this: A user with...
    3. Can't Read Word Document
      :brokenheart; I looking for a way to uplade a (word) document and read it. I can read text files but not word files. I believe the CFAction -Read...
    4. saving same document (read only?)
      First, sorry for my english. When two users open the same document with AcrobatWriter6 and makes change in the document, they don't have message...
    5. Read Only / Edit in Forms
      Hello, I have forms with an edit/read only button. This button works great, except that if the user wishes to search a value using a lookup...
  3. #2

    Default Re: Read text and edit pdf document in IAC



    Is there anyway to read each line from a pdf document?




    Well, no, because PDF documents don't have "lines". It is not a text format. The text may visually be arranged in lines like in a text file, but that by no means guarantees that is how they are stored in the PDF. Have you read any of the PDF Reference (ISO 32000-1 now that Adobe no longer controls the PDF spec) to understand how a PDF stores text before you start a project like this?
    PDL@adobeforums.com Guest

  4. #3

    Default Re: Read text and edit pdf document in IAC

    Thank you for your reply, PDL!

    I have never read that document. I'm going to read it now and come back to project later.

    But there're some softwares can convert pdf document that keep structure. Do you know how to do that?
    tataxin@adobeforums.com Guest

  5. #4

    Default Re: Read text and edit pdf document in IAC



    Do you know how to do that?




    Yes, but it cannot be done with IAC. You would need to write a plug-in that gets each textual element on the page, gets the coordinates it will be drawn to, and then makes its own decisions on what the structure should be based on those coordinates. IAC does not have this level of access.
    PDL@adobeforums.com Guest

  6. #5

    Default Re: Read text and edit pdf document in IAC

    Ah, I see!! So I have to start with plug-in projects.
    Thank you very much, PDL!!
    tataxin@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139