Jump to content

Recommended Posts

Posted (edited)

I found many scripts to read/retrieve some pdf's information, but... none script work for me...

And after 5 years or more, I want know how retrieve for example, author's pdf or real creation date, not the date's creation file... When you download the file, this info is the date of download, not creation date...

How do get this today (2.014) with Windows 7 and Adobe Acrobat Reader 11?

Another post talking is need Adobe Acrobat Viewer, I try search this tool, but without sucess.

Some one can help-me?

Best regards,

Detefon

Edited by Detefon

Visit my repository

Posted

Maybe >this thread helps?

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

@water, yes your reply help me! ^^

I found your API doc, very usefull.

But I solve my problem with XPDF, more fast.

Another question...

I found many codes like this:

$AcroPDDoc = ObjCreate("AcroExch.PDDoc")
    If @error Then Return -1
    $bPDF = $AcroPDDoc.Open($target)
    If @error Then Return -2

This interation with "AcroExch.PDDoc" need Adobe Distiller or a Adobe SDK or (other, only to know)?

Not a comum Adobe Acrobat Reader XI works?

Visit my repository

Posted

I'm not sure if Adobe Reader XI offers an API so you can automate it.

Some research is needed.

My UDFs and Tutorials:

  Reveal hidden contents

 

  • 1 month later...
Posted

http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/reader_overview.pdf

  Quote

 

PDF browser controls are available through the AxAcroPDFLib.AxAcroPDF interface, which provides the following methods used to programmatically control the PDF document window:
●GoBackwardStack
●GoForwardStack
●GotoFirstPage
●GotoLastPage
●GotoNextPage
●GotoPreviousPage
●LoadFile
●Print
●PrintAll
●PrintAllFit
●PrintPages
●PrintPagesFit
●PrintWithDialog
●SetCurrentHighlight
●SetCurrentPage
●SetLayoutMode
●SetNamedDest
●SetPageMode
●SetShowScrollbars
●SetShowToolbar
●SetView
●SetViewRect
●SetViewScroll
●SetZoom
●SetZoomScroll

 

 

But there is other way.

Debenu API

You can use Lite (Free) version.

http://www.debenu.com/docs/pdf_library_reference/FunctionGroups.php

Download Lite Version

Read "Debenu Quick PDF Library 10.14 Reference Guide.pdf"

  Quote

Appendix C: Functions available in the Lite Edition
AddImageFromFile
AddLinkToWeb
AddStandardFont
DocumentCount
DrawQRCode
DrawImage
DrawText
DrawTextBox
FindImages
GetInformation
GetPageBox
HasFontResources

ImageCount
ImageHeight
ImageWidth
LastErrorCode
Linearized
LoadFromFile
MergeDocument
NewDocument
NewPage
NormalizePage
PageCount
PageHeight

PageRotation
PageWidth
RemoveDocument
RotatePage
SaveToFile
SecurityInfo
SelectDocument
SelectedDocument
SelectFont
SelectImage
SelectPage
SetBaseURL
SetInformation
SetMeasurementUnits
SetOrigin
SetPageBox
SetPageDimensions
SetPageLayout
SetPageMode
SetPageSize
SetTextAlign
SetTextColor
SetTextSize
SetTextUnderline

 

 

and you can try my UDF:

Debenu Quick PDF Library - UDF

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

Here is my _XFDF_Info function. Works with pdfinfo.exe from XPDF

; #FUNCTION# ====================================================================================================================
; Name...........: _XFDF_Info
; Description....: Retrives informations from a PDF file
; Syntax.........: _XFDF_Info ( "File" [, "Info"] )
; Parameters.....: File    - PDF File.
;                  Info    - The information to retrieve
; Return values..: Success - If the Info parameter is not empty, returns the desired information for the specified Info parameter
;                          - If the Info parameter is empty, returns an array with all available informations
;                  Failure - 0, and sets @error to :
;                   1 - PDF File not found
;                   2 - Unable to find the external programm
; Remarks........: The array returned is two-dimensional and is made up as follows:
;                   $array[1][0] = Label of the first information (title, author, pages...)
;                   $array[1][1] = value of the first information
;                   ...
; ===============================================================================================================================
Func _XFDF_Info($sPDFFile, $sInfo = "")
    Local $sXPDFInfo = @ScriptDir & "\pdfinfo.exe"

    If NOT FileExists($sPDFFile) Then Return SetError(1, 0, 0)
    If NOT FileExists($sXPDFInfo) Then Return SetError(2, 0, 0)
   
    Local $iPid = Run(@ComSpec & ' /c "' &  $sXPDFInfo & ' "' & $sPDFFile & '"', @ScriptDir, @SW_HIDE, 2)

    Local $sResult
    While 1
        $sResult &= StdoutRead($iPid)
        If @error Then ExitLoop
    WEnd
   
    Local $aInfos = StringRegExp($sResult, "(?m)^(.*?): +(.*)$", 3)
    If Mod( UBound($aInfos, 1), 2) = 1 Then Return SetError(3, 0, 0)
   
    Local $aResult [ UBound($aInfos, 1) / 2][2]
   
    For $i = 0 To UBound($aInfos) - 1 Step 2
        If $sInfo <> "" AND $aInfos[$i] = $sInfo Then Return $aInfos[$i + 1]
        $aResult[$i / 2][0] = $aInfos[$i]
        $aResult[$i / 2][1] = $aInfos[$i + 1]
    Next
   
    If $sInfo <> "" Then Return ""

    Return $aResult
EndFunc ; ---> _XFDF_Info

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...