PDF Scanned in a PDF Text document?

How can I convert a PDF Scanned file in a PDF text document??
Regards

Unfortunately, you cannot change a scan into live text using Adobe Reader. At a minimum you would need Adobe Acrobat to run what's called Optical Character Recognition.
What I've recommended to people in the past is to use the drawing markup tools to draw boxes around the text they want highlighted then play around with the fill color of the box until they get something close to what they want.

Similar Messages

  • How can I export a PDF form and the filled in fields to a text document?

    OK, so I have a situation.  I need people to be able to open a reader-enabled PDF form, fill out the form fields, and then export the filled-out PDF form to a basic text document.  This seems easy since Adobe Reader can save to text.  The problem is, the answers in the form fields do not show in the text file!  Each radio button shows as yes and no, and there is no indication in the text file which one was selected.  In addition, the form fields are not exported next to the questions on the form.  I tried flattening the form in Adobe pro, and that did not work either.
    How can I create a fillable form for Adobe Reader, and then let the user export their answers AND the questions on the form to plain text?

    OK, so I tried this as a starting point, and assigned it to a button on page 3 of the form.
    p=0;
    console.show();
    console.clear();
    for (var j = 0; j < this.getPageNumWords(p);j++) {
          var word = this.getPageNthWord(p,j,false);
          console.println(word);
    This gives me all the words on the first page not in fields, and each word goes on a separate line.  Now, characters in the document such as "&" or ")" cause the rest of the word to go on the next line down.
    Next, I tried this:
    console.show();
    console.clear();
    for (var j = 0; j < this.getPageNthWord(j);j++)
          var word = this.getPageNthWord(j,false);
          console.println(word);
    This only gives me the first word on page 3, the page the button is placed?
    What I need to do is run the code and place words on one line until the code hits a keyword "var cKeyWord1 = “Key1” for example?, then insert the value of field one, Start a new line in the console, restart the code where it left off until it hits the next key word "var cKeyWord2 = “Key2”, insert the value of field two, add a new line, and on and on.
    Is this possible?

  • How do I remove a green background from a pdf text document?

    I posted this question yesterday and received one reply.  I wanted to respond to the reply, but couldn't find a link or "button" to click on that would enable me to do that, so I'm doing it here.  As I'm new to this site, please advise me where the link is, if there is one. 
    Please correct me if I'm wrong, but I thought that PDF was proprietary, with one "owner" and that PDF was PDF, so it didn't matter what program you had on your computer because PDF was universal.  Second, when I googled Nuance pdf, I was directed to this site, specifically the "Create, Edit and Export PDF's" section.  Third, I also have Adobe Acrobat with pdf and a bunch ofother Adobe products on my computer.  So, that brings me back to my original question,  how do I get rid of a green background on a pdf text document, so I don't use up all my ink when I print it.  Thanks for your patience and help.

    I still use Office 2008 but have not encountered that issue. However, as Office is not an Apple product, I strongly recommend asking in the Microsoft Office:Mac forums here:
    Office for Mac
    Everyone there is a Mac user AND an Office user, something you can't say about Apple's forums. You will get the fastest help there and I think you will find the contributors more than helpful.

  • Sending a text document as pdf by email.

    Hi,
    I have a plain text document that needs to be send as a pdf document by email. The line type of the text document is PC408-linda, which is 132-character length. I am trying to use the FM ‘SO_NEW_DOCUMENT_ATT_SEND_API1’ for sending the document which uses structure ‘SOLISTI1’ for sending the document. The line size of SOLISTI1 is 256 characters. I tried to send 132-character length internal table instead of the given structure for the FM, it didn’t work. Later, I put the 132-charcter line into the 256-character length line, which works well. But, I have a problem when the outgoing system converts the 256-character length into pdf document. It breaks the line.
    Can you please suggest me how can I fit this 132-chracter line in the above FM or Is there any alaternateive FM for sending this 132-character lines, which will fit in the pdf format.
    Lokman

    Hi,
    Here I am sending the part of the code that is sending the text document by using FM. Internal table $form conatins 132-character length text document. I want to send this document so that converted pdf appears similar to text line.
    FORM send_email USING $form TYPE tt_form.
    DATA:
        $form_wa1  LIKE pc408.
    data: paydate(15) type c.
    Data  date like sy-datum.
    *date = sy-datum.
    Email Subject.
    DATA: s1(30)  TYPE c VALUE  ' Avis - Bulletin de paie du ',
            s3(50)  TYPE c .
    loop at $form into $form_wa1.
    if sy-tabix eq 10.
    MOVE $form_wa1-linda+5(10) TO paydate.
    endif.
    objtxt-line = $form_wa1-linda.
    append objtxt.
    endloop.
    CONCATENATE s1 paydate INTO s3 separated by SPACE.
    *Email message body.
    DATA: c1(30)  TYPE c VALUE  'Vous trouverez ci-joint',
          c2(50) type c value ' votre bulletin de paie du  ' ,
          c type c value '.',
          c4(85)  TYPE c.
    CONCATENATE c1 c2 paydate c INTO c4 separated by SPACE.
    data: a1(40) type c value 'À ouvrir avec le programme "Notepad" ',
       a2(47) type c value ' ou "Wordpad" pour le visualiser correctement.',
       a3(90) type c.
      CONCATENATE a1 a2 INTO a3.
    data: b1(45) type c value ' Pour imprimer, veuillez vous ',
        b2(45) type c value ' assurer que les marges (droite et gauche)',
        b3(35) type c value ' sont restreintes au minimum.',
       b4(200) type c.
       CONCATENATE a3 b1 b2 b3 INTO b4.
    Main Text
    data wa_form like PC408 .
    Email Subject
    docdata-obj_name = 'TEST_ALI'.
    docdata-obj_descr = s3.
    Email Message
    objtxt = 'Bonjour,'.
    append objtxt.
    objtxt = ' '.
    append objtxt.
    objtxt = c4.
    append objtxt.
    objtxt = ' '.
    append objtxt.
    objtxt = b4.
    append objtxt.
    describe table objtxt lines tab_lines.
    read table objtxt index tab_lines.
    docdata-doc_size = ( tab_lines - 1 ) * 255 + strlen( objtxt ).
    clear objpack-transf_bin.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = 'RAW'.
    append objpack.
    Create Message Attachment
    Write Packing List (Attachment)
    loop at $form into $form_wa1.
    *if sy-tabix eq 10.
    *MOVE $form_wa1-linda+5(10) TO paydate.
    endif.
      objtxt-line = $form_wa1-linda.
      append objtxt.
    endloop.
    att_type = 'RAW '.
    describe table objtxt lines tab_lines.
    read table objtxt index tab_lines.
    objpack-doc_size = ( tab_lines - 1 ) * 255 + strlen( objtxt ).
    clear objpack-transf_bin.
    objpack-head_start = 6.
    objpack-head_num = 0.
    objpack-body_start = 6.
    objpack-body_num = tab_lines.
    objpack-doc_type = att_type.
    objpack-obj_name = 'ATTACHMENT'.
    objpack-obj_descr = 'Attached Document'.
    append objpack.
    Create receiver list
    reclist-receiver = wa_pa0105-usrid. "<-- change address
    *reclist-receiver = '[email protected]'. "<-- change address
    reclist-rec_type = 'U'.
    append reclist.
    *reclist-receiver = sy-uname. "<-- change internal user
    *reclist-rec_type = 'B'.
    *append reclist.
    Send Message
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = docdata
    PUT_IN_OUTBOX = 'X'
    IMPORTING
    SENT_TO_ALL =
    NEW_OBJECT_ID =
    tables
    packing_list = objpack
    OBJECT_HEADER = objhead
    *CONTENTS_BIN = objbin
    CONTENTS_TXT = objtxt
    OBJECT_PARA =
    OBJECT_PARB =
    receivers = 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
    refresh: objtxt,
             objpack,
             objhead,
             reclist.
    IF sy-subrc <> 0.
    message ID 'SO' TYPE 'S' NUMBER '023'
    with docdata-obj_name.
    ENDIF.
    *write: / 'End of Program'.
    ENDFORM.                    " send_email

  • I have text documents in my email folders which I can't open.They are PDF files and Open Office files.How do I open these documents or type additional text documents?

    I have text documents in my email folders which I can't open. They are PDF files and Open Office documents. How do I open these documents?

    These are the "out of the box" file formats that you can view on the iPad as mail attachments. If the file is not listed here, you cannot view it without a compatible third party app. What is the file extension?
    Viewable document types: .jpg, .tiff, .gif (images); .doc and .docx (Microsoft Word); .htm and .html (web pages); .key (Keynote); .numbers (Numbers); .pages (Pages); .pdf (Preview and Adobe Acrobat); .ppt and .pptx (Microsoft PowerPoint); .txt (text); .rtf (rich text format); .vcf (contact information); .xls and .xlsx (Microsoft Excel)

  • Troubles with printing text document exported to pdf (edited)

    Hello, I've exported a text document from pages to pdf.  When I open it with adobe reader everything it's ok.
    But when then I try to print the pdf file a small dots grid on the background appears on the paper sheets. Can someone tell me what can I do to make the grid disappear?

    Try Print as Image (Advanced button on Print panel).

  • Scan to pdf failed to load pdf document (wireless)

    I have a photosmart d110a and I cannot scan wireless to PDF file (get error  failed to load pdf document)
    I am able to scan to JPEG, 
    This has always worked before.
    This is on multiple computers:  ChromeOS,  and Mac operating systems.
    I have checked to see  if software update to date and it is.
    I  have unplugged printer to see if that would help and did not.
    Printing works fine with no problems.
    Any suggestions would be greatly appreciated

    Hello everyone, I've been looking into this issue,
    Tom - Due to feature limitations, the abilities you are looking for don't appear to be available with this printer.  I would recommend a USB connection to scan.
    Paul -  I would love to try and help you, but I do need a little information first. I am linking a few HP Support documents below that will show you how to find your product number. Also, please include which operating system you are using. Also, if you're using Windows, please include whether your operating system is 32-bit or 64-bit. With this information and the product number we can provide you with accurate information.
    How Do I Find My Model Number or Product Number?
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Ray84 - I would recommend updating the printer firmware:
    HP Update Software Utility
    I would also suggest downloading and running the HP Print and Scan Doctor.
    Bravo52 - What version of Windows are you running?
     I would also suggest downloading and running the HP Print and Scan Doctor.
    I would suggest this document to everyone as well:
    Printer Does Not Maintain Wireless Connection
    Please keep me posted.
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • It used to be that when I created a pdf from a word or publisher document, hyperlinks worked fine. Now I cannot get them to work unless the text displayed for the link is the complete address and it all appears on one line. Why?

    it used to be that when I created a pdf from a word or publisher document, hyperlinks worked fine. Now I cannot get them to work unless the text displayed for the link is the complete address and it all appears on one line. Why?

    You can print to the Adobe PDF printer, but that only creates links that Acrobat or Reader recognize as such. That is the reason for needing the entire URL on one line. It is not actually an embedded link, but one created by Acrobat on the fly. With OFFICE 2013 you have two choices: 1. create the PDF with the print to Adobe PDF and then add the links in Acrobat so that they are complete or 2. I think the WORD save as PDF or XPS will create the PDF with links, but not sure. If so, that would be the quickest solution for you, but be aware of potential problems with the MS plugin.
    Of course, the third option is to upgrade to XI which can be done with AA 9. You will probably not be eligible for a for an upgrade to whatever the next version will be.

  • Storing Text, Document, PDF Kind of Data inside Database

    Hello All
    Please Provide me any Document where I will get Information Regarding the Above
    One (Storing Text, Document, PDF Kind of Data inside Database)
    The BFILE Concept is Not USED HERE
    The data should be stored in the BLOB field within the Database.
    Regards
    Madhu

    The following can u a fair idea....
    http://www.dba-oracle.com/t_storing_ms_word_docs_database.htm
    Re: How do we store this.
    http://www.databasejournal.com/features/oracle/article.php/3305771

  • Preview.App does not find text in pure text pdf works in other PDF viewers

    Hi I am using reportlab an open source python based pdf generating package to generate pdf reports.
    The generated pdfs are searchable using Adobe acrobat and Google -Gmails built in pdf viewer . However in Preview.App the text seems to be only recognized as individual characters . For eg the text "hello world" will not match hello or world , but typing just h into the search bar will show up matched text as "h el l o" . So although visibly the text appears as a single word , semantically the words just seem to be composed of one or two characters.
    Only Preview.App seems to have a problem with the generated pdf. Adobe Acrobat ( Mac and Windows) , Google-Gmail pdf-view , Evince-Gnome-PDF viewer ( Linux) dont have any problem with finding the text in the PDF documents generated.
    I have a thread in the reportlab user forum discussing the issue (see http://two.pairlist.net/pipermail/reportlab-users/2009-August/008643.html). ANd the problem definitely seems to be with Preview.App . The pdf (sample see example text in corner) is available at this url ( http://s3.amazonaws.com/code-itch/searchtext.pdf)
    The app is targeted at scientist Mac users . And I want to have the pdf reports searchable and indexed by spotlight , so getting this working is very important for me.
    Your help is greatly appreciated
    Hari

    The posts on the reportlab newsgroup suggest that
    "> If the preview is actually rendering the pdf and then searching, the 0
    degrees case should be searchable. If that's the way the search is happening
    then it's no surprise that the search should fail if the rendered letters
    are at 90deg." -Robin Becker
    Test cases show that search fails completely at rotations of 90 , succeed partially at rotations of 45, succeed fully at rotations of 0.
    So , is there a way to prevent Preview from only searching the final rendered PDF. The pdf I am complaining about are searched fine in the many other PDF readers I tested that probably handle search differently.
    Hari

  • I can no longer attach pdf scans to my emails.   It has all changed.    How do I do it now please.

    I have always attached pdf scans to my emails veyr easily.   Now having been away for five weeks things have changed and I can  no longer do it.   Please help me to find a new way to do this.   I have scanned a document and can open it but cannot attach it what is wrong?.

    You really need to provide some details...
    what is your operating system?
    what is your email client?
    what is your Adobe Reader version?
    what means "can not" (or "no longer");
    how do you try attaching the file?
    what happens when you try?
    also, how large is your scanned document?

  • Can't scan as a pdf from my hp officejet 4500 printer

    Can't scan as a pdf from my hp officejet 4500 printer
    I have windows 7 professional... please help

    Hey Patricia Davis,
    Firstly, please clarify whether you are trying to use scanner or printer option as both are different.
    What exactly are you trying to do with your document? Do you face the same issue with all documents or any specific one?
    Is there any error message that prompts on your screen?
    Let me know.
    Regards,
    Anubha

  • Scan in a PDF format in HP laserjet M1319f MFP printer

    How to scan in a PDF format when the scanner is not showing that option in HP laserjet M1319f MFP printer when it has been installed in a new HP computer with Windows8pro operating system downloading it from HP website ad the Cd that came with the printer did not support this operating system

    Hello yagnya31,
    Welcome to the HP Support Forums!
    I see you are trying to install and scan with the HP LaserJet M1319f MFP, but are not getting a .PDF option. Printing and scanning with the Windows 8 Operating System is described as basic. The .PDF file type should be available regardless, of the software being basic or full feature. Take a look at this HP document: How to Scan: Windows 8 to learn about the different ways to scan.
    See if those methods of scanning gives you the .PDF file type.
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • HP Color LaserJet CM2320nf MP scanning to a PDF

    I  have a HP Color LaserJet CM2320nf MP in my classroom. I need to to be able to scan to a PDF for my confidential documents. I have tried unistalling, reinstalling, setting up printing preferences, updating adobe, and using a different computer.It has previously worked on this computer until I had to reimage it. The only options it gives me for scanning is TIFF, JPEG, PNG, and BMP.
    Thanks!

    Hello  @ssoileau , and welcome to the HP Forums.
    I am sorry, but to get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial product. You can do this at HP Commercial LaserJet Forums.
    I hope this helps!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • How do I scan & save a PDF in just ONE step?

    How do I scan & save a PDF in just ONE step? I can easily scan a document to an OCR'd PDF, but it does not seem to save it until I manually select "save". Seems there should be a way to set up scans to a particular folder destination, with a naming convention & auto numbering, such as YYYYmmDD-0001, YYYYmmDD-0002, etc. I've looked thru the Create>PDF form scanner>configure presets, and no such item seems to exist. There IS a "add to existing document", but that's not what I want to do. I just want to select "scan", and have it create an OCR'd PDF file in a folder.

    Hi,
    You can achieve this via Action wizard. Auto Numbering is not possible however you can combine Scan and Save As in one action.
    Click Tool>Action Wizard
    Create New Action
    See screenshot and set the options that i have highlighted in blue
    Let me know if that helps.
    ~Pranav

Maybe you are looking for

  • How do I get my ringtones back on my phone after since i got a new phone

    How do i get my ringtones to my new phone

  • Sun Studio 12 C++ doesn't allocate variable in inline file

    Hi Forum, I've downloaded, installed and patched my SunStudio 12 on solaris (x86). My -V commands now say: SunOS myhost 5.10 Generic_127112-02 i86pc i386 i86pc CC: Sun C++ 5.9 SunOS_i386 Patch 124864-01 2007/07/25 cc: Sun C 5.9 SunOS_i386 Patch 12486

  • Losing Date Information Upon Import

    I have movie files in both iPhoto and on DVD that I can import into iMovie - but then said clips show up in Events as having been "Created" at the time of import - not the date/time the video clip was actually taken. The information is in the file to

  • Forms 6i and windows 7 registry problem

    Hi, We are using forms 6i patch 14 on windows 2008 R2/windows 7. The only problem is that the form reads from "HKEY_CURRENT_USER\SOFTWARE\ORACLE" key instead of "HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\" like it should, and did on XP/2003. Is it plausible

  • UWL Columns Lay Out - Buffering Issue

    Hi All. I have a weird buffering issue in UWL. I removed non required UWL tabs and UWL features. My UWL now looks very slim. It's only contains single "Tasks" tab without any fancy WF features. In terms of column, it's have: subject, from, sent, prio