Getting type specs from PDF

Hi!
I'm matching a PDF fro a new booklet (someone else did the last one). Is there any way to get the type specs from the PDF?

Leading is not a property of a PDF. Yes, it is there in effect, but
each character on the page, in a PDF, just has an X,Y co-ordinate.
What you see as leading is just the difference between them.
You can get font name and size from the text touch-up tool via
Properties. That is, Properties selected from the context menu;
Ctrl+click on a Mac.
Aandi Inston

Similar Messages

  • 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.

  • How to get Keyword metadata from PDF's ?

    Hi,
    First of all apologies for perhaps stupid questions that I'm asking as I'm a AppleScript novice
    What I'm trying to do is to convert PDF documents to image files (.png or .jpeg), this I can easily accomplish using the Automators "Render PDF Pages as Images" action.
    The difficulty comes from that I also want to rename the generated image files (or PDF's before converting them to images) using part of the data that is contained in each PDF's Keywords metadata and for this I think I need to do some AppleScript coding (need to get and parse the Keyword metadata string for each PDF and then use the parsed data to rename files). Any ideas, hints or tips how this should be done using AppleScript ? (any websites / blogs where this kind of processing has been done ?)
    Appreciate a lot if you can help in this,
    Alan

    Hi Alan,
    Typing the following two lines in the Script Editor should list the metadata attributes for the choosen file:
    set F to choose file with prompt "Choose a PDF file:" of type "PDF "
    do shell script "mdls" & space & quoted form of POSIX path of F
    For more information on "mdls", open the Terminal window and just type “man mdls” (and return).
    Maybe you might also use the following AppleScript statement in case there were some keywords in the Spotlight comments field of the file:
    tell application "Finder" to return comment of F
    Message was edited by: Pierre L.

  • Unable to get dynamic interaction from PDF form

    Hello,
      I am trying to hide a textfield when a certain radio button options selected but so far I am <b>only able</b> to get it to work in the preview window of Adobe Designer 7.0 in NWDS.
      When I attempt to deploy the application, my interactive form will not be able to perform the same hide and unhide function. I have this piece of code added to my wdDoModify :
    if(!firstTime)
              IWDInteractiveForm iForm = (IWDInteractiveForm)view.getElement("TM_form");
              iForm.setDynamicPDF(true);                 
    I also tried saving the PDF to my local machine but the hiding functionality just refuses to work. Do you know what I may have done wrongly ? Any help is greatly appreciate. Thnak you very much.

    Hello Kwok Wei,
    Has the <b>firstTime</b> flag been used in a right way in your code ? Aren't you creating an interactive form at the first go ? Then just reverse the condition to
    if(firstTime)
    But then, it depends on how have you written your application.
    Best Regards,
    Krish

  • C++ code to get XMP metadata from pdf files ??

    Hi,
    I am new to this field and now I have to write a C++ code which will read the XMP metadata from any pdf files. Could anyone please tell me how to do that or where to start? Is there any sample code available for that?
    I am reading the Programmer's guide and XMP specification to have the whole idea.
    I really appriciate your help. Thanks in advance.
    Regards,
    Suranjit Paul

    Hi,
    The same code for reading other formats will go for Pdf too.
    Only difference is while reading PDF it is not calling any smart filters.

  • Copy Data From PDF

    Hi,
    I having an WD JAVA application where a filled in Interactive PDF Form is upoaded through File Upload UI.
    In the appliocation, there is a local node (Cardinality = 1:1) where the Data from PDF has to be copied to that.
    Please let us know how to do that without parsing.
    Thanks and Regards,
    Chandran S

    Hi,
    If you want to get the data from PDF form without parsing you need to do binding of all the fields of addobe form to webdynpro context.
    You must be having a application for saving the pdf form to your system so just open the form in Interactive form Ui element and after selecting the UI element from adobe form go to binding tab under object tab.  Bind the field with the proper context in default binding section. But first make sure that your dataSource property of the Interactive form element is bind with the datanode.
    In that way after uploading the form data will come to webdynpro context automatically.
    Thanks & Regards
    Ravindra Singh

  • How to get the values from struct data type using java code..?

    Hi ,
    I am newer to java.
    we are using oracle database.
    How to get the data from struct data type using java code.
    Thanks in Advance.
    Regards,
    kumar

    Hi Rajeev,
    To retrieve a FilterContainer you will need to traverse the report structure:
    ReportStructure boReportStructure = boDocumentInstance.getStructure();
    ReportContainer boReportContainer = (ReportContainer) boReportStructure.getReportElement(0);
    FilterContainer boFilterContainer = null;
    if (boReportContainer.hasFilter()) {
         boFilterContainer = boReportContainer.getFilter();
    } else {
         boFilterContainer = boReportContainer.createFilter(LogicalOperator.AND);
    Calling boDocumentInstance.getStructure() will retrieve the entire structure for the document.
    Calling boReportStructure.getReportElement(0) will retrieve the structure for the first report of the document.
    Hope this helps.
    Regards,
    Dan

  • Getting Type Mismatch Error while passing Array of Interfaces from C#(VSTO) to VBA through IDispatch interface

    Hi,
    I am facing issues like Type Mismatch while passing Array of interfaces from .NET  to VBA and vice versa using VSTO technology.
    My requirement is that ComInterfaceType needs to be InterfaceIsIDispatch.
    My Interface definition is somewhat like this
        [ComVisible(true)]
        [InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
        [Guid("AAF48FBC-52B6-4179-A8D2-944D7FBF264E")]
        public interface IInterface1
            [DispId(0)]
            IInterface2[] GetObj();
            [DispId(1)]
            void SetObj(ref IInterface2[] obj);
        [ComVisible(true)]
        [InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
        [Guid("CDC06E1D-FE8C-477E-97F1-604B73EF868F")]
        public interface IInterface2
    IF i am passing array of above interface (created in C#.Net) to VBA using GetObj API,i am getting type mismatch error in VBA while assigning the value to variable in VBA.Even assigning to variant type variable gives TypeMismatch.
    Also while passing Array of interfaces from VBA using SetObj API,excel crashes and sometimes it says method doesn't exists.
    Kindly provide some assistance regarding the same.
    Thanks

    Hi,
    I am facing issues like Type Mismatch while passing Array of interfaces from .NET  to VBA and vice versa using VSTO technology.
    My requirement is that ComInterfaceType needs to be InterfaceIsIDispatch.
    My Interface definition is somewhat like this
        [ComVisible(true)]
        [InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
        [Guid("AAF48FBC-52B6-4179-A8D2-944D7FBF264E")]
        public interface IInterface1
            [DispId(0)]
            IInterface2[] GetObj();
            [DispId(1)]
            void SetObj(ref IInterface2[] obj);
        [ComVisible(true)]
        [InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
        [Guid("CDC06E1D-FE8C-477E-97F1-604B73EF868F")]
        public interface IInterface2
    IF i am passing array of above interface (created in C#.Net) to VBA using GetObj API,i am getting type mismatch error in VBA while assigning the value to variable in VBA.Even assigning to variant type variable gives TypeMismatch.
    Also while passing Array of interfaces from VBA using SetObj API,excel crashes and sometimes it says method doesn't exists.
    Kindly provide some assistance regarding the same.
    Thanks

  • 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

  • Is it possible to pass some type of parameter/unique id FROM PDF?

    hi there,
    I will try to explain this as best as I can but please bear with me.
    I have Adobe Acrobat X Pro.
    We have drawings linked to each other in pdf.
    When you open a drawing (say, a layout of a house), my boss wants to be able to click on say, a door, and have all the information on that door pop up (size, manufacturer, when it was shipped, etc). The information log is stored in Excel. I know how to hyperlink to open an excel file FROM pdf, but cannot figure out how to open a specific sheet in Excel. So here is my question:
    1. How do I link to a specific sheet in Excel so it opens when I click on a link in the pdf file?
    Having said that, we are going to have around 1500 items and I don't want to have to create 1500 sheets (if that's even possible) to open the details for each one. So here is question #2:
    2.  Is it possible to pass some type of parameter to excel (or even Access) to know what item was clicked on the pdf file so I can write a macro/code in Excel to just fill in the details for that item? (Hence just needing one sheet instead of 1500?).
    Suggestions/path forwards are welcome.
    I hope this was clear and I thank you in advance.
    Thanks,
    Jessica

    There really isn't a way to do that. It would be possible to export an Excel sheet to a tab-delimited (or CSV, XML) file which could optionally be attached to the PDF. JavaScript inside the PDF could read the data file and extract the information for an item so it could be displayed somehow.

  • 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

  • Why can't I type in my new word doc that I changed from PDF?

    I need help! I can't type in my word doc that I converted from PDF.

    You may have visited a website that has disabled the location bar.<br />
    Try to open a new window to see if that gives you a working location bar.<br />
    If that works then close the not working window and close and restart Firefox to see if that stays.<br />
    * http://kb.mozillazine.org/Prevent_websites_from_disabling_new_window_features
    * http://kb.mozillazine.org/JavaScript#Advanced_JavaScript_settings

  • 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

  • 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.

Maybe you are looking for

  • Why have year-old messages started to reappear endlessly in my In-box?

    The same 5 messages from beginning of July LAST year, about three weeks ago started to re-appear repeatedly in my In mailbox. In addition a one message of 14 July THIS years is doing the same. The frequency is about one message ”burst” every 15 minut

  • DVD+RW DL question

    i know the specs says its doesnt have DVD+RW DL right now i'm trying to use Disk untiliy to burn a cdr file to a blank DVD+R DL (RW) when i bought the blanks i didnt notice the RW till i got home and it was under the box. is there anyway around this

  • FA approver changes should not lead the cart to buyer

    Hi all, FA(Financial approver) changes the Product category, cart should not go back to buyers and if there is the change in Purchase types then  it should redetermine approvals based on new purchase types. In our current scenario, if FA approver cha

  • Get the document info panel details

    I need to get the document info panel (Windows>Document Info) details through scripting in illustrator cs3. Kindly advice me is it possible or not.

  • Only selected line appears in filled-in Acrobat Form

    I created a form in Acrobat 9 standard for people to use to register for a conference. In my testing on an XP machine, vista machine and a Mac, the form opens fine in Reader 10 and allows people to fill it out and retrun it. Today I received two regi