Quantcast
Channel: Adobe Community : All Content - Acrobat SDK
Viewing all 2571 articles
Browse latest View live

Revert file

$
0
0

Hello,

I'm wondering how to revert a pdf file to last saved version via javascript.

 

Any suggestions would be much appreciated.

 

Thanks in advance, M.


How to pinrt local PDF?

$
0
0

Using the VB6.0, invoking the interface, loading the local PDF file, the PDF file has 10 pages, and I need to print the 1,3,5 page in a print task

How do I setup a basic Hello World project in XCode

$
0
0

I've been hitting me head against the wall for a couple of days now and seem to be getting nowhere fast.

 

I've studied the samples in the SDK and it all seems a bit archaic. There's a whole mess of stuff in those projects that are *very* hard to read and come with no explanation (that I've found); primarily in PIMain.c. If anyone can point to something that would explain the code in that file, I'd be very happy.

 

There's a bit of black magic everywhere and frankly, I can't seem to figure out why the sample compile fine while my projects don't.

 

I've tried to doing a simple copy of the Starter sample and adding the missing files that it keeps references to; no luck.

How to use Adobe optimization API

$
0
0

May I know to to user Adobe optimization API to optimize multiple pdf files in one batch.

If possible, please show the source code.

Step 1: Open the folder which multiple pdf files exist

Step 2: Optimize these pdf files and output into the destination folder

 

Thanks in advance.

Regarding to use sdk

$
0
0

I want to Trim the PDF using SDK want to remove the white space with some watermarks but not able to find any way.Needs help.

Where can I find a complete set of documentation for the SDK

$
0
0

The downloadable documentation lacks several pages, or at least has several errors in the links.

 

For example, on the page that describes how to create a PDWordFinder object, there's a link to the API reference, but that link is dead.

 

There are also numerous items that simply appears to be missing -- I can't seem to find any real documentation on how the PDDocCreateWordFinderEx function works or how to use a PDWordFinder object at all.

IE11 PDF file on touch screen - how to navigate back?

$
0
0

Hi,

 

I want to provide a link to a PDF file that should be opened inside IE11 (the download has got header parameter Content-Disposition: inline). When I click the link the document opens as expected in the same page and takes all space in the page.

The problem is now, how do I navigate back from the PDF to the first page? I am using a touch screen and full screen mode (F11 - no navigation buttons, menus, etc. visible). The "swipe-left" gesture - which is usally used to navigate back in the browser - is overriden by PDF plugin and makes me navigate only inside the PDF. I would like to navagate inside the Browser to go back to the previous page. How do I do that?

 

Best regards

Andreas

 

PS: I am using Windows 7, IE11, latest Adobe Reader DC and a touch screen.

How to remove watermark from pdf using adobe object type library in c#

$
0
0

How to remove watermark from pdf programatically in .net using adobe object type library


Background to pdf file of 16000 pages

$
0
0

I need to add a pdf page as background to another pdf file of 16000 pages.

The "Add Background" from acrobat pro is not an option because it is very slow.

Thanks

Existe-il une API pour utiliser Acrobat sur un serveur Web et convertir le HTML en PDF

$
0
0

Bonjour,

 

Certains convertisseurs en ligne offrent de type de service, comme par exemple pdfcrowd.com | Pricing

Comme nous possédons une licence Cloud Adobe, serait-il possible de l'utiliser sur notre serveur Web afin de générer des pdf pour nos factures actuellement en version html.
Merci pour une réponse.

 

 

CS

Is there a way to programatically pull the password from the database rather than typing it manually during encryption?

$
0
0

As per  the title:

 

  1. Is there a way for Adobe Acrobat (regardless of pro or not pro) to programmatically pull the password from the database rather than typing it manually during encryption?
  2. In addition, is there an API/function/library to trigger on-demand encryption?
    1. The initial answer is no, but is there any alternative way?
  3. If no, what are the alternatives, or how can I achieve this? I am open to any of Adobe products.

 

To get more context of the questions, I've posted introductory questions in the PDFforum, basically what I want to achieve: How do I automate PDF encryption for multiple PDF files using Adobe Acrobat Pro?

How to save pdf to png format using jsobject in vb

$
0
0

I want to save a pdf file to png image format using js object how can i achieve that.

The Code i used is jso.SaveAs(ExtractedPath, "com.adobe.acrobat.png") but it's giving an error NotAllowedError: Security settings prevent access to this property or method. How can i overcome with this any help please.

How to access C# based COM component from Adobe plug-in

$
0
0

I want to access the C# base COM component (i.e., tlb file) from the Adobe Plugin Code.

Please suggest me how to use the broker process in order to achieve the accessibility of .net based COM component even when the Protected Mode is enabled.

 

I was able to create a Adobe Reader plug-in by modifying the “BasicPlugin” sample.

My plug-in contains few buttons. When the toolbar buttons are selected the application should display a form.

The form is written in C# and the plug-in in VC++.

I was using interop to access the C# code from plug-in code.

Unfortunately, it does not work when Reader Protected Mode is ON.

 

Thanks.

Please provide me the Adobe Acrobat DC plugin code sample in VC++.

$
0
0

I need the Adobe Acrobat DC plugin code for my analysis process. Since I am working on some demo project where I want to use or access the C# based COM components.
I want to access my custom plugin being provided by C# based COM components.
Please provide me the Adobe acrobat DC sample plugin code.

 

 

 

Thanks.

MS Access VBA: Error in loading DLL

$
0
0

I have Acrobat 9 Standard, and the corresponding SDK.  I'm working on an older MS Access 2003 program using VBA.  I want to programatically combine 3 PDFs into 1.  I have gleaned examples and advice from various forums to create the code.  The code compiles with no errors, but when it's run, I get that old error: "Error in loading DLL."

 

The Reference is: Adobe Acrobat 9.0 Type Library

The path listed is: C:\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.dll

And the file is there.

 

When choosing the Reference, I check just plain "Acrobat", which Access switches to the above file.  That file is not listed separately among the numerous Adobe and Acrobat DLL References available.  I tried choosing other DLLs in place of "Acrobat", but they will not compile.  So, Access recognizes that DLL, and finds the objects used in the code, compiling it without error.

 

Dim pdfOrigDoc As Object

Dim pdfNewDoc As Object

 

Set pdfOrigDoc = CreateObject("AcroExch.PDDoc")

Set pdfNewDoc = CreateObject("AcroExch.PDDoc")

 

The code will run through and past those lines without error, but errors when it tries to use those objects.

(The array is populated with 3 PDF files and paths.)

 

If pdfNewDoc.Open(arr_varFromPath(FP_PDF, LBound(arr_varFromPath, 2))) = True Then

 

If, instead of using late binding, I use early binding,

 

Dim pdfOrigDoc As Acrobat.CAcroPDDoc

Dim pdfNewDoc As Acrobat.CAcroPDDoc

 

I get "Error in loading DLL" on the Set statements.  I tried variations using 'New Acrobat.CAcroPDDoc', but it definitely didn't like those.  It seems odd that the Dim statement uses 'Acrobat.CAcroPDDoc', but the Set statement uses 'AcroExch.PDDoc'.

 

What's the problem?  Why does it recognize it when compiling, but not when running?  It's a fairly simple little procedure.  What am I doing wrong?


Retrieve path of pdf open in Acrobat DC in C#

$
0
0

In c#, I have handle of Acrobat DC process instance running, I simply want to traverse through details of PDF documents that are open in it, and retrieve path of all those PDFs using Acrobat DC SDK (InterApplicationCommunication).

 

For this to start with I went through SDK documentation and Samples provided along with it, but samples are not working, Acrobat.dll included in references is missing, so I went through process mentioned in documentation to add reference but Unable to find Acrobat.dll at Project -> Add Rerences... -> COM, I had installed Acrobat Reader DC v2018.009.20050

Note: I am using VS2013 or VS2015, both of them giving same problem

JSObject Doesn't Have Correct Commands

$
0
0

I have Adobe Acrobat Standard DC installed core version 18.2304. I'm using Visual Studio 2017 and using Visual Basic. I'm trying to create a code to mark a pdf drawing as a draft. I'm starting from the example on one of Adobe's iac developers's guide example thinking that would be a good place to start. I tried out the code that starts on page 23. It didn't work, and I've narrowed the problem to the JSObject. I can use methods from pdDoc to get the correct filename for the PDF, so I think all is working up to that point. The jso object also isn't nothing, so it enders the if statement, but the jso object doesn't have any of the methods used by the pdf example available, so it throws me an error when I try annot = jso.AddAnnot.I have the below references added to the project. Anyone have any idea what the issue might be? Thanks in advance for any help!

 

http://www.adobe.com/content/dam/acom/en/devnet/acrobat/pdfs/iac_developer_guide.pdf

 

    Sub StampPDF(ByVal MyPDFPath As String)

        Dim gApp As Acrobat.CAcroApp

        gApp = CreateObject("AcroExch.App")

        Dim pdDoc As Acrobat.CAcroPDDoc

        pdDoc = CreateObject("AcroExch.PDDoc")

        Dim pdAnnot As Acrobat.CAcroPDAnnot

        pdAnnot = CreateObject("AcroExch.PDAnnot")

        Dim PDFResult As Boolean

        Dim page As Acrobat.CAcroPDPage

        Dim jso As Object

        Dim point(1) As Integer

        Dim popupRect(3) As Integer

        Dim pageRect As Object

        Dim annot As Object

        Dim props As Object

        PDFResult = pdDoc.Open(MyPDFPath)

        jso = pdDoc.GetJSObject

        If Not jso Is Nothing Then

            ' Get size for page 0 and set up arrays

            page = pdDoc.AcquirePage(0)

            pageRect = page.GetSize

            point(0) = 0

            point(1) = pageRect.y

            MsgBox(point(1))

            popupRect(0) = 0

            popupRect(1) = pageRect.y - 100

            popupRect(2) = 200

            popupRect(3) = pageRect.y

            ' Create a new text annot

            '        annot = jso.AddAnnot

            '        props = annot.getProps

            '        props.Type = "Text"

            '        'annot.setProps props

            '        ' Fill in a few fields

            '        props = annot.getProps

            '        props.page = 0

            '        props.point = point

            '        props.popupRect = popupRect

            '        props.author = "John Doe"

            '        props.noteIcon = "Comment"

            '        props.strokeColor = jso.Color.red

            '        props.Contents = "I added this comment from Visual Basic!"

            '    'annot.setProps props

        End If

    End Sub

 

Waht is AcroAVDoc.Open function's Exception ???

$
0
0

Hi,I am writing a vba code, and need use AcroAVdoc.Open,but if no file exit ,  Acorbat application will show a Dialog ,it say" no file exit " and I need to use manual click the "OK" button to close the Dialog, anyone know how to control let the Dialog not show or auto click the "OK" button ??? I know AcroPDDoc.Open can do the same thing open file , I just want to know how to Control the AcroAVdoc.Open's Exception about open file failed, thanks ~~~~~

I am trying to Merge using c# this is not working :( , Its urgent Pls reply

$
0
0

          string sourceDoc = @"D:\XXXXX.pdf"; 

 

            AcroPDDoc objPDDoc = new AcroPDDoc();         

            objPDDoc.Open(sourceDoc);

            int numberpgaes = objPDDoc.GetNumPages(); //Getting Number here

 

 

            AcroPDDoc objPDDocNew = new AcroPDDoc();

          

 

 

            if (objPDDocNew.Create())

            {

                MessageBox.Show("New File Created");

            }

 

 

            if (objPDDocNew.InsertPages(-1, objPDDoc,0, numberpgaes, 1))

            {

                MessageBox.Show("File Inserted");

            }

            objPDDocNew.OpenAVDoc("Template");

Rectangle Annotation using Acrobat API in .NET application

$
0
0

We are using Interop.Acrobat.dll (Adobe Acrobat 9.0 Type Library) V 1.1.0.0 to access PDF files programmatically.   We have a requirement to create a rectangle annotation in PDF (programmatically) similar to the snapshot pasted below.   Request you to share the API guidance document (with examples) to integrate the above mentioned requirement with our Microsoft.NET application.

 

pdfAnnotSample.jpg

Viewing all 2571 articles
Browse latest View live