Questions tagged [acrobat-sdk]

The Software Developer Kit for Adobe Acrobat

With the Acrobat SDK you can write scripts in to extend the functionality of , create plug-ins, and use the interapplication communication (IAC) to have an independent program control Acrobat's functionality.

For more information, go to http://www.adobe.com/devnet/acrobat/overview.html.

133 questions
1
vote
0 answers

Convert Pdf to Pdf/A from Adobe Acrobat Professional XI/DC SDK

I've made a small app in C# which converts PDF files to PDF/A with the Adobe Acrobat SDK. I've used the SaveAs JavaScript function, included in the SDK, this way: var pdfDocument = new AcroPDDoc(); pdfDocument.Open(fileInfo.FullName); object…
Speuline
  • 201
  • 2
  • 15
1
vote
1 answer

Reduce pdf size in .Net

I have a pdf template of size 230KB. In my WebAPI for multiple users, taking copy of that template pushing data to it, and merging using iTextsharp library. For 1500 users, total file size is reaching up to 320 MB. I tried using BitMiracle, it…
AkankshaGupta
  • 121
  • 1
  • 10
1
vote
1 answer

Get a font and font size from text?

I want to make an application for auto finding font. Therefore, I try to get a font and font size from PDF text with Acrobat SDK. I examined samples and documents, but I could not find it. CAcroPDDoc pdDoc = new AcroPDDocClass(); …
Evan.Titer
  • 319
  • 2
  • 11
1
vote
0 answers

Optmizing scanned pages in a PDF

I'm working on an automation project which requires me to recognize text in scanned pdfs(images).I need to write a code in python which converts the entire PDF(scanned) into readable PDF using recognize text function in Acrobat Pro DC. I've written…
Prabal
  • 51
  • 1
  • 6
1
vote
1 answer

not able to call 'Saveas' function to save pdf as word through acrobat. throws reflection exception

I am trying to convert a pdf to word and save it programitcally through api. I have tried the sample given in the sdk in the C# samples folder by changing the code from other refrences. However i am getting reflection error as ' Target type…
vinoth R
  • 11
  • 2
1
vote
1 answer

Trying to flatten PDF using flattenPages() but nothing happens

I'm trying to call the Acrobat Javascript API from VBA to flatten all annotations in a document, using the following code: Sub flattenPDF() Dim AcroApp As Acrobat.AcroApp Dim AcroDoc As Acrobat.AcroPDDoc Dim jso As Object Dim path As String path =…
sigil
  • 9,370
  • 40
  • 119
  • 199
1
vote
1 answer

How to make a redirect in the browser using pdf?

I want to ask the user a question and if they click the yes button, then they should be redirected to another page. Adobe Acrobat allows us to insert JS in the pdf: if (app.alert("Do you want to go on page X?", 2, 3) === 4) { // Make the direct…
Ionică Bizău
  • 109,027
  • 88
  • 289
  • 474
1
vote
2 answers

How can I create a real link annotation in Adobe Acrobat using Acrobat Javascript

I want to run an Acrobat Javascript inside of Adobe Acrobat. In that script I want to create a link annotation. This can be done easily enough, but using the "addLink" function in the document object, but this type of link only works with a…
David van Driessche
  • 6,602
  • 2
  • 28
  • 41
1
vote
0 answers

pdf - insufficient permission for image extraction

I'm trying to convert a PDF to a tiff using the acrobat SDK's JSObject. My code below: The above code works for the majority of PDF files, but files with security/password protection fail. An acrobat window pops up with the message "Insufficient…
dbr
  • 247
  • 2
  • 7
  • 24
1
vote
0 answers

Read 3dpdf annotation view

Can anyone help me out to read the 3dpdf all 3D annotation view, with out open the 3dpdf document through C#. Through ITextSharp I am able to place annotation view but able to read the same.
Raghvendra
  • 11
  • 1
1
vote
0 answers

Adobe SDK Parsing Text

I was looking in to Adobe acrobat and one of the features I noticed was that when you hit control + F there is a popup to find and replace text. Once you hit the replace button on the popup, all the text inside the entire PDF Document becomes split…
peacefullearner
  • 81
  • 1
  • 10
1
vote
1 answer

Smart/Fillable PDF adding more attributes

I am creating a Smart/Fillable PDF using Acrobat Pro DC. I created a word file with 250+ fields(in a tabular manner), exported to PDF and then in "Prepare form" options I added checkboxes, dropdowns and a couple of buttons and the form is ready.…
Rushabh Shah
  • 405
  • 1
  • 6
  • 16
1
vote
1 answer

Forcing embedded Acrobat viewer to capture mouse wheel

I have an embedded Acrobat viewer in a C# winform application. The viewer is in a tab page tabPage1 in a tab control I use the code from this answer: (1) CAcroAVDoc acroExchAVDoc; CAcroPDDoc pdDoc; void CreatePdfViewerAndOpenFile(string…
Jerry
  • 4,258
  • 3
  • 31
  • 58
1
vote
1 answer

Using Adobe plugin in WebBrowser Control

I have been trying to enable commenting in Adobe plugin in a c# WinForm, but I couldn't find a way. I even started a bounty on another question, but I didn't get any help (Enabling annotation in Adobe AxAcroPDFLib). So I wonder if it is possible to…
Jerry
  • 4,258
  • 3
  • 31
  • 58
1
vote
3 answers

How to make semi transparent layers in PDF printable on Adobe Acrobat?

I am using an online PDF generator to generate the attached PDF. While the PDF opens and looks OK on adobe Acrobat (I tested several different versions including Reader and Pro) the transparent layers are printed as white boxes when sent to printer…
user1999624
  • 89
  • 1
  • 9
1 2
3
8 9