How to get pdf file page's information

Ask a Question related to Adobe Acrobat SDK, Design and Development.

  1. #1

    Default How to get pdf file page's information

    If one of the PDF file pages is rotated by 90 angles and becomes horizontal, It is still vertical when I print it out to be an image. So I want to know how I can get the page's infomation to judge it's vertical or horizontal (rotated or not) by coding. Thanks very much.
    fuzezheng@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Change a Page's template?
      I have a site that has two templates: a single column template and a two column template. I would like to know if it is possible to take an existing...
    2. help with File Summary Information
      Is there a way to update the summary information of pdf and powerpoints files? I have several PDF files in the need to be index but it gives better...
    3. Can I get the current page's URL?
      I was wondering if there is a way to get the current page's url string via Flash. I want to be sure my Flash file is only played on a particular...
    4. Pasing a reference to my page's Response.Cookies collection
      I would like to have my ASPX page call a function intended to make changes the the current Page.Response.Cookies. I had thought that to allow the...
    5. Passing a variable to a new page's form field via hyperlink
      OK, this may be impossible since I'm using 3rd party shopping cart ASP software, but I've been able to finagle a lot of other stuff I thought...
  3. #2

    Default Re: How to get pdf file page's information

    Download the Acrobat SDK and read the documentation.
    Leonard_Rosenthol@adobeforums.com Guest

  4. #3

    Default Re: How to get pdf file page's information

    thanks very much.
    fuzezheng@adobeforums.com Guest

  5. #4

    Default Re: How to get pdf file page's information

    What's wrong with the code below? Why does pAcroPDDoc.CreateInstance return E_NOINTERFACE?

    #import "acrobat.tlb"

    Acrobat::CAcroPDDocPtr pAcroPDDoc;
    HRESULT hr = pAcroPDDoc.CreateInstance("AcroExch.FDFDoc");
    if ( FAILED( hr ) )// hr = E_NOINTERFACE
    {
    return;
    }
    fuzezheng@adobeforums.com Guest

  6. #5

    Default Re: How to get pdf file page's information

    AcroExch.FDFDoc->AcroExch.PDDoc. It's OK now, thanks.
    fuzezheng@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139