Embed text in a PDF

I converted a Microsoft Word document into an Adobe PDF, but the secure website where I tried to upload it said to embed the text in the PDF. How is this done? I have the monthly subscription for $9.99.

The only way to OCR on the page would be to save the page (or the PDF) as a set of TIFF files (the set is created automatically). Then open the TIFFs in Acrobat (drag and drop works best). You can then OCR the result that is pure graphics. If there is anything other than a pure graphic on a page, Acrobat will not OCR.

Similar Messages

  • Using browser javascript to copy selected text from a pdf file opened in Air app.

    I have posted this question on reader forum as well, but I think it is more suited here...
    I am trying to create a note-taking application in air. I want to extract selected text from pdf file as a string object or to the clipboard.
    Obviously, all pdfs in my local storage will not be scripted to recieve postMessages and act accordingly, and that is not practical either. So, my problem is, how can I copy the selected text in the pdf file (opened as an object in htmlloader within my Air app) to clipboard or directly in another control by say clicking a button in air application? I suppose, this is possible using javascript, however, I don't know which reader methods are exposed to the wrapper htmlloader control. In short, I want to execute app.execMenuItem("Copy") command through htmlloader javascript. Any alternate solutions are also welcome.
    This is similar to passing inbuilt commands/methods/functions (of adobe reader) to pdf-reader plugin embedded in a webpage via javascript. This is possible in IE where the pdf is rendered as activex object, and hence JSObject interface of pdf document/reader is accessible to the browser javascript. I have also read that this same JSObject is accessible to VB as interface for IAC, so as the Air is Adobe's own product, I was wondering if equivalent of JSObject is accessible to htmlloader control as well.
    Thanks in advance...
    Mits

    Thank you Thom for your reply...
    from
    http://www.adobe.com/devnet/acrobat/javascript.html
    ...Through JavaScript extensions, the viewer application and its plug-ins expose much of their functionality to document authors, form designers, and plug-in developers...
    As it is explicitly mentioned, that the functionality of adobe reader are exposed for plugin development, I thought someone here might have used external javascript to execute some safe methods in adobe reader. The functionality (i.e. external javascript interface-JSObject) is already available for VB programmers to develop IAC. Further, the Acrobat SDK example called "AcroPDFinHML" shows how one can embed a pdf-reader in a html page and execute some safe methods (like gotonextpage(), zooming etc.) in IE as ActiveX plugin. I have checked it myself for adobe reader 9, and it works perfectly, so there is no security issue as such to implement the same for another browser (like in my case, the htmlloader control in flex/air app).
    I intend to create a note taking application in air, where it is very much required that I should be able to copy selected text from various pdf documents, that are open in my app, and subsequently paste/collect/save the collected notes and process them afterwords (offcourse, from the pdfs that allow me copying text). However, it is not happening for me here. As the pdfs are opened through adobe reader plugin, it does not register the copy command executed by my air app. It registers the system level copy command (by keyboard shortcut Ctrl+C), but my air app has no way to execute the system level copy command programmatically. So I am kind of stuck here...
    Thanks again for your reply. Having known what am I intend to accomplish, any other (may be alternative) solutions will be appreciated nonetheless...
    Mits

  • Embedding Full-text Index into PDF File

    Hello Everyone,
    I've tried to create and embed full-text index into PDF file, but with no luck. I've followed steps described at http://help.adobe.com/en_US/Acrobat/9.0/Standard/WSC28D4DBB-6A78-4027-9E04-F50FE411CFB9.w. html - there can be seen progress of collecting of data and at the end the button Update index is enabled. This is signal for me that Index was created. After clicking on Ok button, saving document as new one and then reopening "new created" document, there is info that no Index is embedded in the Manage Embedded Index dialog. Is there any other step necessary to do? Or is it bug? Adobe Acrobat Pro 9.1 on Windows Vista 32bit is used.
    Jan
    PS: Interesting is also comment at the bottom of above mentioned help page...

    Thanks for the response. It is true that if I make changes and look at the embedded index status, it shows that it needs updating
    However the problem I can't get around after extensive testing is that sometimes for no apparent reason the index is dropped on save. This can happen if I check the status of the index to make sure it is valid, save the file, and reopen it.
    I've concluded that this must be a bug and am using other indexing options for the time being.

  • How to extract text from a PDF file?

    Hello Suners,
    i need to know how to extract text from a pdf file?
    does anyone know what is the character encoding in pdf file, when i use an input stream to read the file it gives encrypted characters not the original text in the file.
    is there any procedures i should do while reading a pdf file,
    File f=new File("D:/File.pdf");
                   FileReader fr=new FileReader(f);
                   BufferedReader br=new BufferedReader(fr);
                   String s=br.readLine();any help will be deeply appreciated.

    jverd wrote:
    First, you set i once, and then loop without ever changing it. So your loop body will execute either 0 times or infinitely many times, writing the same byte every time. Actually, maybe it'll execute once and then throw an ArrayIndexOutOfBoundsException. That's basic java looping, and you're going to need a firm grip on that before you try to do anything as advanced as PDF reading. the case.oops you are absolutely right that was a silly mistake to forget that,
    Second, what do the docs for getPageContent say? Do they say that it simply gives you the text on the page as if the thing were a simple text doc? I'd be surprised if that's the case.getPageContent return array of bytes so the question will be:
    how to get text from this array? i was thinking of :
        private void jButton1_actionPerformed(ActionEvent e) {
            PdfReader read;
            StringBuffer buff=new StringBuffer();
            try {
                read = new PdfReader("d:/getjobid2727.pdf");
                read.getMetaData();
                byte[] data=read.getPageContent(1);
                int i=0;
                while(i>-1){ 
                    buff.append(data);
    i++;
    String str=buff.toString();
    FileOutputStream fos = new FileOutputStream("D:/test.txt");
    Writer out = new OutputStreamWriter(fos, "UTF8");
    out.write(str);
    out.close();
    read.close();
    } catch (Exception f) {
    f.printStackTrace();
    "D:/test.txt"  hasn't been created!! when i ran the program,
    is my steps right?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to extract text from a PDF file using php?

    How to extract text from a PDF file using php?
    thanks
    fabio

    > Do you know of any other way this can be done?
    There are many ways. But this out of scope of this forum. You can try this forum: http://forum.planetpdf.com/

  • Hi I've a big problem with adobe acrobat reader XI pro and I hope you can help me. The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reade

    Hi
    I've a big problem with adobe acrobat reader XI pro and I hope you can help me.
    The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reader (adobe pdf reader, internet browsers, ...etc.).
    This problem started to happen since yesterday when I installed adobe acrobat reader XI pro to try it before I buy it, and before that when I was using the free adobe pdf reader I was totally able to copy any text from any pdf and past it anywhere with nothing wrong.
    What can I do?
    thank you a lot.

    There is no product called Adobe Acrobat Reader Pro. There is
    - Adobe Acrobat Pro ($$)
    - Adobe Reader (free)
    Which do you have? And are you a programmer?

  • I can't edit text on a pdf file in adobe acrobat

    I need to edit the text on the pdf file but I can't and this message keeps showing up: " This form cannot be edited in Acrobat. Please use Adobe LiveCycle Designer to edit this form.
    There are no security on this file. The only thing that is not allowed is to create templates. When I check the document properties description, on the PDF producer it says adobe distiller 7.0.5 (windows)
    I downloaded the adobe livecycle designer but I couldn't edit the text there either... When I open the file it says the text is not downloaded so it replaced it with another text, I clicked ok but then the text didn't change, This message showed up:
    I really need to edit the text on this pdf file because it's important. Can anyone help? Greatly appreciate it. By the way, this is a pdf fillable form that you can fill out on acrobat and that is the only thing it seems like it will let me do this file. I don't want to fill it out, I want to edit whats on it. It's one of those forms that you get from NJ courts.

    Ok, what we can tell you is that if this is a LiveCycle form (and we can be pretty sure it is), that you are absolutely right. Acrobat can fill it, and nothing else. These are a very special kind of PDF, where all the text is in a special XML format that Acrobat can only show, not edit.
    So, you are on the right track: if it can be edited, you need LiveCycle Designer. Unfortunately, we don't know much about it in this forum, so please try posting here: http://forums.adobe.com/community/livecycle/livecycle_modules_and_development_tools/livecy cle_designer_es
    If the form is publicly available, it may help if you include the URL (web address) when you post.

  • , Trouble importing from text file into PDF Acrobat 9.0

    Hey all!
    I'm trying to use the JavaScript found on this Adobe page to insert text into my PDF:
    http://help.adobe.com/livedocs/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/wwhelp/wwhimpl/common/h tml/wwhelp.htm?context=Acrobat9_HTMLHelp&file=JS_API_AcroJS.88.502.html
    this.importTextData("/c/data/myData.txt", 0);
    Replacing the path with my own path, of course.  However, I can't get it to work at all, it just crashes my JavaScript.  I was thinking it might have something to do with the privilege stuff which, admittedly, confuses me a bit.  But my understanding is that if you use the function without arguments, that shouldn't matter, and it will prompt the user for a path?
    this.importTextData();
    However, that still crashes the JavaScript.  I'm not sure what exactly I am doing wrong here?
    NOTE: I have tried running the JavaScript both in a checkbox and on page load.

    Well I was having trouble getting it to work without a path, though that kind of mysteriously started working now despite the fact that I didn't really change anything.  I also assumed that part didn't apply to me because we are on 9, not 8, but maybe it means 8 and on?
    I'm having a bit of trouble wrapping my mind around privileged and non-privileged contexts.
    These methods can be executed only in a privileged context, which includes console, batch and application initialization events.
    What would be the simplest way to execute in a privileged context?  "Application initialization" sounds promising, does this mean when the application is first opened?  If so, how would you execute JavaScript this way?!

  • Is there a way to control Adobe PDF plugin from within a Web Application? For Example, Can we highlight text in the PDF/A document programatically?

    Hi,
    I am trying to open a PDF document in browser using Adobe PDF plug-in for IE 9. The plugin version is 10.x
    I need to highlight certain text in the PDF document ( which is searchable) programmatically. For example, when a user selects certain text on the web-page, we want to automatically highlight that in the PDF document.

    I don't think this is a question one can answer by simply downloading the SDK. And even if one reads all the documentation (it rarely happens for obvious reasons), it is not easy to reach an answer because its explanation is not trivial at all.
    In my own opinion, this is right the type of question to be put and (hopefully) answered in a Forum.
    Now, I am not sure about the correct answer but I will give one hint.
    If I am not wrong, the Internet Explorer, IE, PDF viewer by Adobe is actually a .dll file which is put under IE once Adobe Reader is installed. A custom plug-in for Reader or Acrobat is also a .dll file (Windows) but its extension is .api and it needs to be copied under Reader or Acrobat (or both). Therefore, I don't see how we can merge the IE viewer .dll with a custom plug-in .api. Though maybe technically possible, I don't think it is something we can do.
    If above reasoning is correct, the answer to the question is No.

  • Can you edit the text of a PDF that is placed in inDesign

    I have placed a PDF in inDesign and am curious if I can edit the text of that PDF while in inDesign.

    Edit it with Adobe Acrobat Pro, indesign can't. Option for Indesign is:
    of course overlay text with new text
    There is specialized software for editing PDF files, though the choices are much more limited and often more expensive than creating and editing standard editable document formats. Version 0.46 and later of Inkscape allows PDF editing through an intermediate translation step involving Poppler.
    Serif PagePlus can open, edit and save existing PDF documents, as well as publishing of documents created in the package.
    Enfocus PitStop Pro, a plugin for Acrobat, allows manual and automatic editing of PDF files, while the free Enfocus Browser makes it possible to edit the low-level structure of a PDF.
    In Acrobat you should use the TouchUp Text Tool.
    But in the end, PDF-files are not made for editing.

  • Why Acrobat x professional is changing the text formatting specifically the font family  and the font size of the text in my pdf on exporting it to Microsoft word file format ?How should i stop Acrobat x professional from doing that so that i get an exact

    Why Acrobat x professional is changing the text formatting specifically the font family  and the font size of the text in my pdf on exporting it to Microsoft word file format ?How should i stop Acrobat x professional from doing that so that i get an exactly same word file on exporting it from its pdf counterpart?

    I was testing the preciseness & efficiency of Adobe acrobat x professional's doc conversion capabilities. As i have to take a document editing project in future which is going to need lot of pdf to word and vice versa conversions . What I did was I created a test word document converted into a pdf using a pdf maker in my word 2007 , Acrobat did convert the document from word to pdf keeping everything in the source file intact , However when i tried the other way round and attempted to convert the same pdf to word 2007 file format I lost my formatting ?So the font that I used to create the pdf are the ones taken from word 2007 which i believe is using the fonts that are installed in my computer. Any suggestions on how to preserve the formatting of the document after converting it from pdf to word file format?
    Regards
    Mike

  • A problem with copying text from english pdf to a word file

    i have a problem with copying text from english pdf to a word file. the english text of pdf turns to be unknown signs when i copy them to word file .
    i illustrated what i mean in the picture i attached . note that i have adobe acrobat reader 9 . so please help cause i need to copy text to translate it .

    Is this an e-book? Does it allow for copying? It is possible that the pdf file is a scan of a book?

  • I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    You can set up a temporary button (or link, bookmark, etc.) and add the following JavaScript action:
    // Mouse Up script for a temporary button (or bookmark, etc.)
    // Change the font and font size for all text fields in this document
    for (var i = 0; i < numFields; i += 1) {
        var f = getField(getNthFieldName(i));
        if (f.type === "text") {
            f.textFont = font.Helv;
            f.textSize = 9;
    It also sets the font size, but you can remove that line if you don't need to do that.

  • How can I copy text from a PDF document in bb pbk?

    I've tried to copy a text from a PDF document but adobe reader doesn't give me that option. How can I do it? or there is a better reader for PDF that allows to copy, make bookmarks, to highlights?

    If the PDF is not an IMAGE, you can using a free program called PDF-XChange Viewer from Tracker Software. If the PDF was done as an image then you will not be able to select the text.
    Bold 9000 on Rogers Network - Company BES
    Playbook 16G WiFi Only

  • I cannot edit text in a PDF created from scanning

    I am using Adobe XI, and I have created a PDF by scanning a document.
    When I do click on a paragraph to edit text, all the page appears selected, it seems to be an image. At that moment a message pops up saying: this page has not editable text or digitalized content. The editing tools are disabled, so I cannot edit text.
    If I do export a page to Excel or Word, I can edit text there, although there are some kind of data that is not converted properly (even when I have executed OCR).
    I have edited preferences, but I am not sure if I did it correctly.
    Thanks

    I am using Acrobat XI Pro on PC.
    Of course, I have done all the steps you mention,  but I wanted someone to confirm me if these setting values are correct in order to obtain the best results. I repeat the paragraph of my previous discussion that I want to clarify, just in case some of you can help me, mainly about optimization
    I digitalized the document from the scanner. This scanner is installed in the net, so I personalized the settings in Acrobat and I chose memory mode instead of native mode.
    Mode color: black on white
    Resolution: 600 ppp
    As you say in your mail, I understand I should choose ClearScan OCR not searchable just at this moment.
    Well, and what about the options of optimization?, JBIG2 (without lost)?, 4 CCITT?
    And filters?, I have: activated, low, activated, medium
    Are these values congruous or compatible?
    Thank you
    De: Phillip Jones [email protected]
    Enviado el: martes, 27 de noviembre de 2012 18:24
    Para: Suárez Suárez, Manuela
    Asunto: I cannot edit text in a PDF created from scanning
    Re: I cannot edit text in a PDF created from scanning
    created by Phillip Jones<http://forums.adobe.com/people/PhillipMJones> in Creating, Editing & Exporting PDFs - View the full discussion<http://forums.adobe.com/message/4877588#4877588

Maybe you are looking for

  • Not sure if Mavericks is worth the effort of downloading and I prefer mountain lion.  How do you make a file in Finder.

    I am not sure if Mavericks is much better than Mountain Lion as an OS.  The maps part was okay but I could not view the map as shown on the apple website, there was no 3D.  How do you create a file in Finder on the MacBook Pro.?

  • My ipod wont download my podcasts??!!

    i boutght an i pod form someone 2 weeks ago pretty mutch brand new except for some songs... well i deleted them put my suff on then tryed to put podcasts on but no luck... so i restored my ipod to factory settings and still no luck w/ podcasts i have

  • Dynamic parameters for Webstart

    Hi, I want to create a Webstart-Application that dynamically takes parameters. Looking for a solution I found that the only way seems to be to generate jnlp-files (e.g. using servlets). However, here at the Oracle-pages I found this document [http://

  • Windows 7, XP domain computer doesn't need password for VPN.

    Hello, I have a small problem, i dont understand why my domain computers can connect to VPN without providing the user name and password. I mean the both user name and password fields are left blank and connection is successful..  I need to force use

  • GDI object leak using an applet with Java Plugin 1.4.2_02

    We have an application where we use an applet to draw some graphs. The applet has an interface to update the graphical data using Javascripts. Now duing every graphical update of the graph there a leak of the GDI objects. Over time the display on the