Getting Thumbnails from PDF

Hello,
When we use Acrobat Professional to "Create PDF" using "From File" , Acrobat is internally creating the thumbnails for each page and storing these information in one of the layers. I would like to know how to extract those already generated Thumbnail images from PDF using ACrobat SDK.
Questions:
1. Is there any mechanism to achieve this using Acrobat SDK?
    Performance is the criteria I am looking for as far as extracting the thumbnails are concerned.As Acrobat has already created the thumbnail data, I would like to reuse/get it which I feel would enhance the performance.
2. I tried PdPage.CopyToClipbpoard() which would give a thumbnail image but its not matching the performance criteria. In this approach we are re-creating the thumbnails anyway which I would not prefer.
Please help.
Thanks
Praveen

Your first statement is incorrect.  Acrobat hasn't generated embedded thumbnails of pages since version 6.
You mention, CopyToClipboard(), which implies to me that you are trying to do this through the COM interfaces - those are going to be slower than working with the plugin interfaces, but plugins require C/C++.  If you do stick with COM, then you should look at the drawing interfaces used by the Static and Active samples in the SDK - those will be much faster than copy to clipboard.

Similar Messages

  • How to get data from PDF form?

    PDF forms can send data in url like GET or POST method. Is it possible to get data from url, like in PHP http://sever/file.php?item1=value1&item2=value2&item3=value3
    In APEX url have specific construction and I don't know how to get value of items (1...3)
    Please let me help to find simple method of geting data from URL.
    Best Regards,
    Mark

    The APEX URL syntax is detailed here
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/concept.htm#BCEDJBEH
    How to get it from PDF is another matter...
    I'm working on an app that downloads PDFs with a Large amount of data as a blob, takes that blob and changes it to XML, then goes through the xml to validate each section of data and then add it into the schema that my apex app is referencing....
    I didn't write the original code but I do know that it isn't a quick thing to implement and includes using some uploading some java jar files to your schema and writing some custom java code.
    Someone else may be able to help with grabbing PDF data into the URL for the amounts of data you want to pass to apex.
    Gus..
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!
    Edited by: Gussay on Sep 21, 2009 5:52 PM

  • Thumbnail from PDF is always blank

    Tearing my hair out over this.
    I generate PDF's from a Fujitsu scanner and need to generate png graphics of each page pair (1-2,3-4,5-6 etc) from multi-page document. If I try to generate the thumbnails directly from the document, <CFPDF action="thumbnail" pages="1-2"...> CF fails to generate anything. If I use <CFPDF action="Merge" pages="1-2"....> to generate the page pairs in PDF and then try to generate the thumbnails from the PDF page pairs, the PNG files are generated, but are blank.
    Below is dump of original scanned PDF info:
    struct
    Application
    FUJITSU fi-6130dj
    Author
    [empty string]
    CenterWindowOnScreen
    [empty string]
    ChangingDocument
    Allowed
    Commenting
    Allowed
    ContentExtraction
    Allowed
    CopyContent
    Allowed
    Created
    D:20100304112505-06'00'
    DocumentAssembly
    Allowed
    Encryption
    No Security
    FilePath
    d:\websites\Duval\EA\Documents\PAR\1.pdf
    FillingForm
    Allowed
    FitToWindow
    [empty string]
    HideMenubar
    [empty string]
    HideToolbar
    [empty string]
    HideWindowUI
    [empty string]
    Keywords
    [empty string]
    Language
    [empty string]
    Modified
    D:20100304112551-06'00'
    PageLayout
    SinglePage
    Printing
    Allowed
    Producer
    PDFScanLib v1.2.2 in Adobe Acrobat 7.1
    Properties
    [empty string]
    Secure
    Allowed
    ShowDocumentsOption
    [empty string]
    ShowWindowsOption
    [empty string]
    Signing
    Allowed
    Subject
    [empty string]
    Title
    [empty string]
    TotalPages
    40
    Trapped
    [empty string]
    Version
    1.6

    Usually that means that you have linked to the logical file rather than the correct one. The actual editor is hidden away in the support files folder. The file at the top level of the PSE 12 folder in Applications is just an alias to the welcome screen. You want to choose this one:

  • Read and Get Data from PDF

    Hi All,
    I am fairly new to programming macros in Excel VBA, and right now I need to write a macro that can open a PDF file and read it and get data from there and paste it into an excel spread sheet. Is this possible?  If so can you give me some sample code
    that would do that?

    I did this once many years ago.  I had to have Acrobat Professional installed ($$$).  There are free pdf parsers that you access from VBA using Win32 commands like:
    https://code.google.com/p/peepdf/
    Maybe something has changed since I did it

  • Auto create thumbnail from pdf

    Hi all, can anyone assist with writing a script to automatically create thumbnails of a saved PDF and then move that thumbnail onto a NAS SMB shared volume?
    thanks
    KL

    Take advantage of Automator, and create a workflow that prompts you for a PDF, and then generates thumbnail images of that PDF into a Desktop folder. The workflow will overwrite any thumbnail images associated with the PDF, if you rerun it on the same PDF.
    Here is the AppleScript to generate the thumbnail(s) from the PDF, and access the first thumbnail. I am not using a Server here, so that is missing from the AppleScript, but should be a Finder move/copy from your thumbnail folder to the server destination address. The applescript can be saved as an Application on your Desktop.
    set pdfimage to {}
    set workflowpath to "OSXHD:Users:viking:Desktop:pdf2img.workflow"
    set qtdworkflowpath to quoted form of (POSIX path of workflowpath)
    set command to "/usr/bin/automator " & qtdworkflowpath
    set pdfimage to do shell script command
    -- get first thumbnail path
    set thumbnail to (second paragraph of pdfimage as text)
    display dialog thumbnail
    Launch Automator, and choose to make a new workflow. Save this workflow to your Desktop, or anywhere you like. For this example, it is sitting on my Desktop. Build your Automator workflow with the following Library actions:
    Files and Folders - Ask for Finder Items
    PDF - Render PDF Pages as Images
    Files and Folders - Move Finder ItemsI created a new folder on the Desktop to place the generated thumbnails
    Here is what the Automator actions look like in the finished workflow.

  • Get attachments from pdf

    I have a problem that is urgent. I want to extract attachements from a pdf file using java apis. I started from an example buf the BIG problem is that i don't have a documentation for certain java classes.<br />A piece of my code:<br /><br />PDFDocument pdfDoc = pdfFactory.openPDF(pdfFile);<br />try{<br />      EmbeddedDataObject[] edoList = pdfDoc.getDataObjectList();<br />      if (edoList.length>0){<br />         for(int i=0;i<edoList.length;i++){<br />        try{<br />           DataBuffer edodb = pdfDoc.exportDataObject(edoList[i].name);<br /><br />        }<br />        catch (Exception e){}<br />}<br />catch (Exception e){}<br /><br />DataBuffer is com.adobe.service.DataBuffer, buf i can't find documentation for it.<br />Please help.<br /><br />Regards, bogdan

    If you need code-level help, you should open a formal support incident with our Developer Support folks.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Tue, 24 Jan 2012 23:13:52 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: How to get file attachments from a pdf.
    Re: How to get file attachments from a pdf.
    created by poortip87<http://forums.adobe.com/people/poortip87> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4163393#4163393

  • How to get data from pdf file and send contents  of the pdf file to R/3

    Hi, experts,
    Action:
    1. Make a pdf forms (interactive form) with inputfield named “A_inputfield” in the webdynpro application and run the webdynpro application.
    2. In the IE, click the save button in the pdf interactive form and save the pdf to local disk,ex: C disk. Close the IE browser.
    3. Open the pdf interactive form from the local C disk and type "aaa" to the “A_inputfield”.
    4. I want to save the "aaa" to the R/3 system using webdynpro or using other tools . How can I do it?
    First way:
    If I use webdynpro application to save the content of the pdf, I don't find a way mapping or binding the content to a context of a view. So I don't think this way is unadvisable.
    Second way:
    Adding a button "submit" in the pdf forms when create the pdf form. Runing the webdynpro application, save the pdf to local disk,ex: C disk.  Opening the pdf interactive form from the local c disk and typing "aaa" to the “A_inputfield”, click the  "submit" button to save the content. Of course, I need to finish the code for clicking "submit" button. But I don't know how  to write these codes and where to write these codes. Do you give me some advise ?
    Best regards,
    tao

    Hi, Abhimanyu L,
    Thanks a lot for your help. Your answer can give me large developmental.:)
    I find http://help.sap.com/saphelp_erp2005/helpdata/en/67/fae9421dd80121e10000000a155106/content through searching google for CL_WD_ADOBE_SERVICES class. But I don't find any exmples for the class. Do you give me some hint for some exmples for the class?
    Best regards,
    tao
    (You can reply back to me via e-mail if you think we should discuss this internally at [email protected] or [email protected])

  • Get rectangle from pdf C#

    Hi I displaying my a pdf on my form using the Adobe PDF Reader
    Once displayed the user can draw a rectangle using the Selection tool within Adobe
    I would like to know if there is a way i can get the coordinates for the rectangle drawn by the selection tool

    I don’t believe so, no.

  • Getting help from PDF rather than web

    Everytime I click on help I find that PSE 7 wants to open my browser to apparently consult the help file on the web.  This seems absurd when I understand that all of the same data is available in the PDF file.  How do I get the program to stop looking up the web?

    If you have already downloaded the PDF help files, then there is no use of clicking help links in the application. This will ultimately retrieve you the same information that is already in the PDf files.
    Regards.

  • How to extract word coordinates from PDF using vc++6.0

    In sdk,i just know how to get coordinate from pdf using javascript,and it will be completed use vb.but i dont know how to get the coordinate througt vc++6.0.anyone can help me?
    thank you advance!

    PDEWordFinder is the usual method for getting words and co-ordinates.
    PDFEdit is not usually used, it is not suitable for getting text.
    It is very hard work to make the two worlds work together (e.g. to
    edit text you find).
    Aandi Inston

  • Getting thumbs to show up from PDF graphics

    I'm having trouble getting some of the thumbnails to show up in my Artwork palette - specifically, the graphics that are in PDF format.<br /><br />I've regenerated the palette by holding <Shift> on relaunch, removed & re-added the pdfs themselves, created new pdf graphics to test if THEY show up (they don't), even deleted the .db3 files for both media & thumbnails (folks, I don't recommend doing that unless you ABSOLUTELY have to) - but still no thumbs from PDF graphics.<br /><br />Anyone got another idea?<br /><br />Mike<br />http://www.graficalicus.com

    Ian. I think the OP is states they purchased songs from WiFi iTunes off the iPhone. Went into iTunes to convert to ringtone but they are not showing up correctly.
    OP if you could post better details about what you are experiencing and doing we can better assist. I think I have a good sense of what is going on but would need more info before anyone here can properly advise.

  • How to get font's information from PDF of page item?

    The PDF file is placed in a document of InDesign.How to get the list of font's name from the PDF.I would like to know the font which is used in the PDF file.

    Thanks, Michael 2 James
    I try it.The IFontNames interface's "FontsSupplied" Function can't got the name of fonts from PDF file. This PDF file was created by InDesign.
    If the PDF file had be created by Adobe Acrobat and some fonts had be embedded,the "FontsSupplied" Function would have gotten the name of fonts.
    There other ways?Thanks

  • I am using Adobe Reader with paid up service through May 2015.  When I attempt to convert a file from PDF or to PDF, I get the message "An error occured while trying to access the service.  What do I need to do to access the service paid for?

    I am using Adobe Reader with paid up service through May 2015.  When I attempt to convert a file either to PDF or from PDF, I get the error message, "An error occurred while trying to access the service".  What do I need to do to get access to the service I have paid for?

    Hi DeaconTomColorado,
    Please see "Error occurred when trying to access this service" when logging on to Acrobat.com.
    Adobe has just released an update to Adobe Reader, so if you're accessing the service via Reader, please let us know whether the update helps resolve the issue.
    Best,
    Sara

  • Get an off-screen thumbnail from a webpage

    Hello everyone! This is my first post on this forums.
    I'm developing an application to get a thumbnail from a webpage, and save that thumbnail to a file. It has to be a "non-visual", off-screen appllication, because it will run on a machine with no screen. It has to render all, or almost all webpages.
    The thumbnails created by this app will be used on another app which lists links from an user, like it's shown in http://del.icio.us ; what I want is to generate these thumbnails.
    I've previously searched for a solution in this post: http://forum.java.sun.com/thread.jspa?forumID=20&threadID=709683 , it is not exactly what I want. I need a real image to be generated, not only a page preview.
    I've tried to use several java-based projects founded on Internet, but I didn't success because sometimes they render ok the page (using a window), but don't paint ok to file; sometimes they paint ok to file, but doesn't render ok the page (using a window) due to poor support of current HTML and CSS standards, as they are based on JEditorPane or the project is abandoned..
    The best approach I have made is with Flying Saucer (https://xhtmlrenderer.dev.java.net/), it does exactly what I need, it has even a method to do this, but it is very rigid about standards and doesn't render "real world html". Related to this I've tried to get code from page, clean it with tagsoup and then pass the xhtml code parsed to Flying Saucer's renderer, but it still has problems rendering the majority of webpages.
    Any ideas? Anything that can put me in the right direction is welcome.
    Thanks!

    Hello 4fingers, and thank you for your answer and suggestions.
    About the first one, it's a way, I'll annotate it but the goal it's to don't depend on others, this is going to execute on an automatic process, imagine if the service fails for some reason, the service is not available or it has ended...
    About the second one, I knew existence of JRex through my search. I looked for an example and found this web: http://blogs.pathf.com/agileajax/2007/01/how_to_really_d.html , but I didn't even tried it when I read this tips that also are at that web (mainly, #1):
    There are a couple of issues that complicate matters, however:
    1. JRex just won't run in headless mode. You have to have a display. On Linux you could use VNC.
    2. With the complication of classloaders, etc., JRex won't run easily or cleanly in Tomcat, Jetty, etc. Therefore I decided to use a simple embedded web server. This of course has its downsides, as a good servlet container provides you with a number of advantages.
    3. JRex is not a pure HTML renderer -- it is an application, that pops up dialogs, responds to user events, etc. There may be a way to just use it as renderer, but that documentation thing gets in the way again. As it is now, there is no way to tell whether the rendering was successful or whether the JRex component is stuck with a modal dialog telling the nonexistent user that the server was not responding.
    4. JRex is not a real Swing/AWT component. You can't use a Graphics object to paint it to an offscreen image; all you will get is a blank page. We need to capture the part of the screen that corresponds to the browser window. That means that the browser window needs to be on top and of the size you want to image. It also means we need one display per preview server if we want to scale. (On Linux you could scale with multiple servers and multiple X displays such as VNC.)
    5. We can only handle one request at a time per preview server as we only have one screen.
    After that, the example goes into creating a JFrame, showing it on screen...
    I found on my research the #1 with, for example, JDIC Browser, which is easy to deploy but when you render the panel to a buffered image you get a beautiful black screen :D.
    Today I visited Cobra's renderer webpage, http://html.xamjwg.org/cobra.jsp, to see if they had released an update (0.97, also with a browser, "lobobrowser"), and they did, I tried it but it's the same result I got two weeks ago, it paints ok to image, but the page render it's still too bad. They are improving this as they say, so I'll keep an eye on this.
    At least this project. Cobra, and Flying Saucer, aren't dead. If I find any solution I'll post here. And as always, any ideas are welcome.

  • Could not get exact contents from pdf using adobe acrobat professional

    Hi,
    I am using acrobat professional to extract contents from a pdf into HTML. During extraction of pdf into HTML some contents are getting rendered as images. But with pdf to xml extraction i can get the exact contents. But i need HTML file from pdf. Any suggestions. Thanks in advance.

    You might want to see if you can select the background with the object touchup tool. If so, can you then just delete the selected object. May take a while to go through the document, but if it solves the problem you are ahead. You may be able to select it with JavaScript and repeat the process. My point of using the object touchup tool is that it may not be a background set by Acrobat, but something that is simply labeled as an image from the Acrobat viewpoint.

Maybe you are looking for

  • Dynamic sql and cursors

    We are running an oracle sql procedure that uses a LOT of dynamic sql. We are using a 3rd party package (SQR) as a sort of shell to run the sql procedure. The 3rd party package passes to us an oracle error. This error says, in effect, that there are

  • How to do a re-install of Mac OS 10.5 LEOPARD??

    Saturday (28 Feb 2009) I had a smooth install of Leopard over 10.4.11 TIGER. I'd been practising for 10 months on other Macs! BUT BUT-- then within 24 hours I have a frozen / inactive menu bar-- either the menu doesn't switch when I switch programs;

  • Finder cover flow not playing .mp4 files

    Recently I found the option to play video files while in the cover flow view in a finder window (click on the right pointing arrow that appears when hovering over the thumbnail). This week when I try playing a video (.mp4 files), I can see that the v

  • TDS - not reversed during downpayment clearing - in MIRO

    Hello Experts In my example, I am using EHP4 functionality for downpayment. Hence I have down following steps: 1. Mentioned downpayment amount in Purchase Order. 2. Made payment in F-48 (with reference to Purchase Order) and TDS Deducted 3. Done GRN

  • Performance issues in file download servlet

            FileInputStream in = null;         ServletOutputStream sos = res.getOutputStream();           File f = new File(path);           if(f.exists())  {             in = new FileInputStream(f);             int length = (int)f.length();