Reading a pdf

Hello everyone!
I'm working on a application to search files.
I have some pdf documents and i want to be able to search in plain text and above all in the keywords associate with each file (visible with "right-click -> properties").
I didn't find solution to do this and i don't know how to go farer than loader.data........
Are there solutions in as3 to read pdf files or should i use some extern librairies??
Thanks for you help!
Sam

PS: loader.data show this in a TextArea.text
Test%PDF-1.5
%âãÏÓ
10 0 obj
<</Linearized 1/L 6965/O 12/E 2425/N 1/T 6663/H [ 449 146]>>
endobj
15 0 obj
<</DecodeParms<</Columns 4/Predictor 12>>/Filter/FlateDecode/ID[<6A8AB3203F1C2C4C77ED30BAF7159EBE><AC5D5C529999B848B93A1D3679B 04152>]/Index[10 15]/Info 9 0 R/Length 48/Prev 6664/Root 11 0 R/Size 25/Type/XRef/W[1 2 1]>>stream
hÞbbd ``b`r   ~@&#130;± Ä]
$~/g`bd&#152;    &#146;``$@ügÜò  À

Similar Messages

  • Acrobat won't save as a Reader Enabled PDF File

    Hello Everyone,
    I'm having troubles with creating an editable PDF.  What my goal is for this document I'm creating is that when I send this doc to others they can fill in their name and be able to import their logo into this document.  Because you can't create an image field, my work around is creating a signature field for where they can place their logo.  Anyhow, my problem is that as soon as I create the signature field in Acrobat, I cannot save it as a Reader Extended PDF, because all of the options are greyed out.  I've tried changing some of the security settings to allow for this, but its not working.  I just want someone to be able to open Adobe Reader and be able to use this signature box.  If there is anyone that can help I would really appreciate it.
    All the best!
    m2b

    Hi m2b,
    Do you sign the document before extending the features? If you do then make sure "Lock the Document after signing" checkbox is not checked. Try this:
    Clear all signature fields.
    Click on the field that you want to sign
    "Sign Document" window will appear
    In the left bottom corner this check box will appear.
    Uncheck it.
    ~Sandeep V.

  • Saving a .pdf Created in Flare9 as Reader Extended PDF

    When I first installed Adobe Acrobat X Pro and built .pdfs from Flare, I was able to save the .pdf with the "Reader Extended PDF" function. Now, that capability is no longer available and in order to access this feature I must save the .pdf and open X Pro, open the saved document and save, again, as X Pro. However, the actual commenting feature seems to be "hosed," and, in my capacity as a technical writer, this has gotten a bit frustrating. Is there something in the properties of X Pro that I need to reset? Thank you.

    Not sure I understand the isssue. How were you building PDF files from Flare and getting a "Reader Extended PDF"?  Was this a menu or option in Flare?  For Acrobat it's always been either Save as [Extended Option], Send for Shared Review, or LiveCycle Reader Extension Server to get an Extended PDF file.  Also, if your users have Adobe Reader XI, they can comment with Sticky Notes and Highlighters by default now.

  • I have created a PDF and password protected it for view. However, when reading the PDF in Adobe Reader app on the iPad the commenting and annotation options are not available. Is there a way to allow commenting and annotation in the app while password pro

    I have created a PDF and password protected it for view. However, when reading the PDF in Adobe Reader app on the iPad the commenting and annotation options are not available. Is there a way to allow commenting and annotation in the app while password protecting the document?

    Is there a setting that needs to be set to allow the annotation features?  I set password protection to open and then password for editing and set it to Any except page extraction, but it still did not give the annotation option

  • Reader Extended PDF not working for some users

    I've created a document in Adobe X Pro and saved it as a Reader Extended PDF with Enabled Commenting & Markup. Most users are having no problem adding comments (by attaching a file) but I have a few users having issues (one with Adobe Reader 9 for Mac and one with Adobe Reader X for Windows). They are seeing the bar at the top telling them they cannot save data in the form, and they do not have access to any of the commenting or markup features.
    Thoughts?

    Which web browsers are they using to download the PDF file?  If you send them the Extended PDF file via email are they able to connect to the Shared Review?

  • Reading a pdf file from URL into Byte array/ByteBuffer in an applet.

    I'm trying to figure out why this particular snippet of code isn't working for me. I've got an applet which is supposed to read a .pdf and display it with a pdf-renderer library, but for some reason when I read in the .pdf files which sit on my server, they end up as being corrupt. I've tested it by writing the files back out again.
    I've tried viewing the applet in both IE and Firefox and the corrupt files occur. Funny thing is, when I trying viewing the applet in Safari (for Windows), the file is actually fine! I understand the JVM might be different, but I am still lost. I've compiled in Java 1.5. JVMs are 1.6. The snippet which reads the file is below.
    public static ByteBuffer getAsByteArray(URL url) throws IOException {
            ByteArrayOutputStream tmpOut = new ByteArrayOutputStream();
            URLConnection connection = url.openConnection();
            int contentLength = connection.getContentLength();
            InputStream in = url.openStream();
            byte[] buf = new byte[512];
            int len;
            while (true) {
                len = in.read(buf);
                if (len == -1) {
                    break;
                tmpOut.write(buf, 0, len);
            tmpOut.close();
            ByteBuffer bb = ByteBuffer.wrap(tmpOut.toByteArray(), 0,
                                            tmpOut.size());
            //Lines below used to test if file is corrupt
            //FileOutputStream fos = new FileOutputStream("C:\\abc.pdf");
            //fos.write(tmpOut.toByteArray());
            return bb;
    }I must be missing something, and I've been banging my head trying to figure it out. Any help is greatly appreciated. Thanks.

    Keshav.. wrote:
    I too was going through the same problem but I found for some pdfs it worked fine.I didnt get ur solution.Please explain bcoz it may work for every pdfThis thread is over 3 years old and dead. Please open a new thread which provides details of the problem you are having. Link to this thread if you think it is necessary.
    I shall lock this thread.

  • How to read a PDF from within PL/SQL?

    we have a requirement like this: We have a Time Tracking and Project Monitoring System whose DB is a Oracle 10g R2. We want to automate our ''Meeting Minute'' processing.
    -- The project lead will write minutes into a form PDF.
    -- I.e. a PDF where people can type in information to fields.
    -- The PDF will be e-mailed to the project manager.
    -- Project manager will save the PDF in a HDD directory.
    -- Then he will run a program.
    -- Program will pickup all the PDFs in directory one-by-one.
    -- For each PDF, the program should read the fields.
    -- Read values will be inserted to the DB.
    Now, my problem is, HOW ON EARTH TO READ A "PDF"???
    One option is to CONVERT the PDF to XML and then read the XML. BUT, unfortunately after googling for over 4 hours I came up empty on converting PDF to XML.
    How can we do this???
    Any help would be greatly appreciated.

    >
    after googling for over 4 hours I came up empty on converting PDF to XML.
    >
    Glad I'm not paying you by the hour! You might need to switch to decaf.
    It only took a few seconds for me using 'convert pdf to xml'
    Right there on the first page was a link on how to use Adobe Acrobat to do the conversion.
    http://www.ehow.com/how_5806567_convert-xml-using-adobe-acrobat.html
    So then you use 'adobe acrobat convert pdf to xml' and it's amazing - there are links to the adobe site. One of them is about an XMl Plug-in for Windows.
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=1209
    And an adobe forum question about it
    http://forums.adobe.com/thread/339814
    Maybe try searching again after the caffeine wears off a little?
    If it can be done with PDF Adobe has the tools to do it.

  • Hi... I would like to purchase a Tablet Sony Xperia Z 2 10.1 (the last one of the Z series) and I was told that Adobe does not support Sony anymore.... I need to be able to open and read Adobe PDF files and I would like to know if this tablet can still us

    Hi... I would like to purchase a Tablet Sony Xperia Z 2 10.1 (the last one of the Z series) and I was told that Adobe does not support Sony anymore.... I need to be able to open and read Adobe PDF files and I would like to know if this tablet can still use Flash Player...
    Is there anyo who can help me with this? I asked in the shop and I was told "yes of course" , but when I contacted Sony directly I was advised to check with Adobe as apparently in the recent months Adobe and Sony haven't been getting along anymore...

    You may be mixing up two entirely different Adobe products.
    1. Adobe Flash Player. Needed to view web pages designed with Flash. Not needed to view PDF files. Not available for Android (not just Sony).
    2. Adobe Reader. Reads PDF files. However, the Android can also read most PDF files without needing Adobe Reader.

  • When I try to save a form as "Reader Extended PDF" in Acrobat Pro, I get an error message "This document could not be reader enabled".

    Hello,
    When I try to save a form as “Reader Extended PDF” in Acrobat Pro, I get an error message “This document could not be reader enabled”.
    The steps I’m following are described below:
    1.    Insert electronic signatures
    - In Tasks, click on “Add New Field -> Digital Signature”.
    - Move the square to the place where you want to put the signature and click.
    - Fill in the “field name” with the name of the person who has to sign here.
    - When it is done, click anywhere on the screen.
    - In Tasks, click on “Close Form editing”.
    - Go to menu “File -> Save as -> Reader Extended PDF ->Enable additional features”, click on “Save now”.
    - Fill in the file name and click on “Save”.
    2.    Save the Form
    - In Tasks, click on “Close Form editing”.
    - Go to menu “File -> Save as -> Reader Extended PDF ->Enable additional features”, click on “Save now”.
    - Fill in the file name and click on “Save”.
    I am using Adobe Acrobat Pro 10.0.0 on a W7 workstation
    Here's a screenshot of the problem.
    Thanks a lot.
    Gael

    Read the user manual that came w/the scanner and/or contact HP Support.
    http://support.apple.com/kb/PH14141 OS X Mavericks: Reset the printing system 
    http://support.apple.com/kb/HT3669 Printer and scanner software available for download 
    A scanner driver you may wish to consider:  VueScan Scanner Software

  • Can SAP R/3 system read a PDF file without XI as middleware?

    Hi Experts,
         There is a requirement where an SAP R/3 system needs to read contents of a PDF file. The file is supplied to R/3 system from an application server. Is it possible to read contents of a PDF file by a SAP r/3 system without middleware like SAP XI? If possible what might be the general steps of doing that? Secondly is it possible for XI to read contents of a PDF file format which has data in form of CSV within it?
    regards
    Anupam
    Edited by: anupamsap on Feb 16, 2011 1:12 PM

    >>Secondly is it possible for XI to read contents of a PDF file format
    Yes,Write a custom adapter module for sender file adapter.
    Use itext libray
    http://api.itextpdf.com/
    check this blog.(writing to PDF )
    http://wiki.sdn.sap.com/wiki/display/XI/CODE%20-%20Create%20a%20PDF%20File%20via%20the%20iText%20Library
    you can write the code to read the pdf.
    Hope it helps

  • Does anyone know of an e-reader app for the iphone that has text to speech capability? I have a Kindle 3G that can read whole pdf documents and books but I cannot figure out how to do it on my iphone 4.

    Does anyone know of an e-reader app for the iphone that has text to speech capability? I have a Kindle 3G that can read whole pdf documents and books but I cannot figure out how to do it on my iphone 4.
    All of the apps I have found on the App store either do not have the text to speech capability or if they have it they will only read a page at a time or simply read the text you paste into their window. I really do not understand what is so difficult about having this feature as Kindle provides it--though Amazon does not make the feature available on its iPhone 4 app.
    Please help.

    thanks. yes i am aware of the VoiceOver feature but it is NOT the solution to my problem. as you said, it is a solution to a different set of issues. i want the text to speech ability because i there are books i need to read but do not have the time to sit down and read them and have become used to listening to them read to me either by a professional human reader or with the text to speech software on the Kindle.
    I think Apple makes the best audio devices but i am really disappointed in this inexplainable shortcoming. if apple can give us siri they ought to be able to design a nice little button that i can push to turn on text to speech while i am in a document, book, magazine or webpage. clearly it is possible as apple has added the "reader" button in safari to have web pages dropped into the reader format.
    thanks for your suggestion though, it is what everyone suggests but it does not address the issue.

  • Problem in Reading a .PDF file

    HI Friends,
    I am reading a .pdf file from within java program using its java.io package.
    I am able to read the file, but when I print the line read from file on to the screen, it all garbage. Its not in readable characters.
    I guess its reagrding mismatch in Charcter Sets of original file and the stream with which I m reading the file.
    So,if u know the solution plz suggest me.

    Hello Simple@java
    Here's an exemple of a class that opens the File "rapport.pdf" located at the same place as the class.
    Of course AcroRd32.exe is the name of Acrobat Reader which allows to read pdf files. You can get it on : adobe.com(http://www.adobe.com/products/acrobat/readstep2.html)
    You will change "rapport.pdf" by the name of your pdf file.
    Then execute "test()".
    * Open the file "rapport.pdf"
    public class test
         public test()
              Runtime a = Runtime.getRuntime();
              try
                   a.exec("AcroRd32.exe rapport.pdf");               
              catch (Exception e)
                   System.out.println(e.getMessage());
    Good luck !

  • I can no longer type in unlimited information on my adobe reader in pdf. At one time this was an option, it would give you an icon that would allow you to type in more information. This is no longer an option. What happen?

    I can no longer type in unlimited information on my adobe reader in pdf. At one time this was an option, it would give you an icon that would allow you to type in more information. What happen?

    That is not an option of Adobe Reader, but the way a PDF is created.

  • Is there any way to read the pdf file in java

    Hai,
    i need some advice from anyone that is there anyway to read the pdf file directly from java...
    Without converting to other files(txt,html)
    if it is possible please help me..
    Thank you

    Or use the Adobe one (search the adobe site). Or search this forum, this is one of the Top Ten Qestions Asked here.

  • All PDF print as completely black pages.  I can read the PDF fine.  This is true on any printer.

    All PDF print as completely black pages.  I can read the PDF fine.  This is true on any printer.
    A google search shows others have had this problem, but I have not seen a solution posted.
    I have uninstalled and reinstalled Acrobat, without help.  I'm wondering if this is a registry problem.
    I saw some post that referred to a stuck switch of print colors as black, but I know nothing about this.
    Please help!

    I am using a Mac (all software latest version - Mt. Lion and Safari as web browser).  I see this exact problem but NOT with all PDFs.  As you might not know, PDF creation is built-into all Macs and I do NOT have a problem with any of those, nor has anyone complained to me about those.  Also, Macs have a bulit-in PDF viewer ("Preview") which also can NOT view the file correctly.  If I try to open the file once it has been stored on the desktop, Acrobat gives me an "incorrectly formatted PDF file" error.
    My AMEX statement is unprintable and some other stuff that comes from our local school board, and other online sources.  (My suspicion is that these files are not perfectly formatted).
    Here was my work-around:
    I use FIREFOX browser to retrieve the same PDF and it prints fine.
    I, too, would LOVE to know why this is happening because it is annoying.

  • How-to get Font weight information while reading a PDF document

    Hello everyone
    it seems that the available tools to read PDF documents from Java don't allow to get font weight informations about the tokens read from PDF.
    I need to know if a character is bold in order to recognize if it could be part of a paragraph's title.
    is there a way to keep this information? (now I'm using PDFBox but it seems to allow only to get the PDF content as plain text, without keeping this kind of font weight info...)
    thanks sincerely a lot
    to anyone who would be so kind to help me
    ;)

    shilkie wrote:
    I've already read the wiki and the examples about iText, and also the two free tutorial chapters, but it seems iText doesn't allow to check the font character of a pre-existing PDF document,,it only allows to create document with a specified font but this is not what I needWell, to tell you the truth, I don't do much with PDF, myself, I only believe (from anecdotal evidence) that iText is much better than PDFBox. Have you downloaded it and tried a few things, or just read some of the docu? I am fairly sure that if you designate a font, there is probably a way to retreive this font as well, although not necessarily. Download it and play around a bit.

Maybe you are looking for