Questions tagged [adobe-pdf-library]

Native C/C++ library with .NET and Java interfaces for automating PDF workflows. Developed by Adobe and made available to third-party developers by Datalogics. This is the library driving Adobe Acrobat and other Adobe tools.

Adobe PDF Library is a native C/C++ library with .NET and Java interfaces that provides APIs for automating PDF workflows. The Adobe PDF Library provides rendering, color manipulation and conversion capabilities that match Adobe Acrobat's. Other major workflows include silent printing, document manipulation, document merging, PDF optimization and conversion to PDF standards such as PDF/A, PDF/X. Low level API control is also available when needed. The Adobe PDF Library is available on 14 platforms - Windows 32/64 bit, Mac 32/64 bit, Solaris SPARC 32/64 bit, Solaris Intel 32/64 bit, AIX 32/64 bit and HP/UX Itanium 32/64 bit.

Resources

Adobe PDF Library documentation

17 questions
4
votes
3 answers

Azure Function : system.private.corelib : exception while executing function

I am writing a Azure Function for PDF conversion with dependencies on DataLogics PDF conversion and a Nuget package (mlkpwgen) for password generation. Functions are using System.IO; using Microsoft.AspNetCore.Mvc; using…
Kunal Kumar Shah
  • 56
  • 1
  • 1
  • 2
3
votes
1 answer

The encoding (CMap) specified by a font is missing. Error number: 537067605

Using the Datalogics.PDFL when I attempt to save some PDFs I get the following error: The encoding (CMap) specified by a font is missing. Error number: 537067605 I can open and save other PDFs. I tried installing all the referenced fonts I could…
Mike
  • 559
  • 5
  • 21
2
votes
1 answer

Adobe PDF SDK - PDDocColorConvertEmbedOutputIntent and PDFA

I am using the Datalogics library 9.1 and I am trying to embed an OutputIntent in a PDF I am creating so that it will be compliant with PDFA-1B. I'm using PdDocColorConvertEmbedOutputIntent to do so and the function call is succeeding. The intent is…
Dan G
  • 836
  • 11
  • 31
2
votes
2 answers

is adobe acrobat sdk library useful to render pdf's in custom application?

I would like to ask if the acrobat sdk allows me to create an application that is able to render a pdf document from inside my application, that is, without the user having to open the adobe application along, but just having to have it installed on…
P5music
  • 281
  • 3
  • 12
2
votes
2 answers

Adobe Sdk programmatically removing watermarks

I'm using Adobe PDF library (C++ Interface) and have been trying to remove the watermarks on an existing PDF for a while. To add a watermark I have used the PDDocAddWatermarkFromText method, but I would need to remove the previously existing…
djf23
  • 21
  • 2
2
votes
1 answer

Datalogics initialization and AdobeFnt13.1.lst

For initialization of the Datalogics APDFL 10.1.0 I'm calling the following code: pdflData.pluginDirListLen = PDFLGetDirList2(&pdflData.pluginDirList, sBinPath, _T("")); I have noticed that this will generate a file AdobeFnt13.1.lst listing all…
Opmet
  • 1,754
  • 18
  • 20
2
votes
2 answers

How can I check if a PDF file is using embedded fonts?

I have a folder where multiple clients upload multiple PDF files. Some of them are using embedded fonts, some doesn't. I've been working on a service that optimizes (in terms of file size) the PDF files in this folder. Each user may be uploading…
Zohar Peled
  • 79,642
  • 10
  • 69
  • 121
2
votes
1 answer

Can Datalogics Adobe pdf library fix badly formed PDF?

I am looking at Datalogic's Adobe pdf library to repair and optimize PDF files for printing. The APDFL v15.0.0PlusP1a (5/18/2016) version release notes make reference to PDFProcessor for C++ but that seems to be missing from the sample files. The…
dkmrsa
  • 53
  • 7
2
votes
1 answer

Detect if PDF is colored [DATALOGICS][APDFL]

I am using APDFL 10.1.0 to convert PDF to images. This is how I am loading the PDF file and saving a specific page as image: Document pdfdocument = null; pdfdocument = new Document(docpath); Page docpage = pdfdocument.GetPage(pagelist[0]); Image…
amyn
  • 922
  • 11
  • 24
1
vote
1 answer

I'm using Datalogics APDFL SDK. how to print only the pdf pages containing a certain word?

I have imported Datalogics maven sample source project in eclipse but don't know how to find the word and add them to print range and print specific pages that contain certain word
paras
  • 13
  • 3
1
vote
1 answer

Point H/V capped at value 32768 pre-scaling

The Point H/V properties from a given Path in a PDF seem capped at value of 32768 pre-scaling from a matrix transform. I'm trying to read the Point information for certain PDF's where it seems to be limiting the Point data incorrectly. When I try…
1
vote
0 answers

PDDocSave takes more time in saving the files

I found slowness in Inserting and saving the PDF files with the latest libraries (APDFL15.0.4PlusP4a and APDFL15.0.4PlusP2e). The slowness happens when the page count is more than 300. The below code saves a 450 pages document using PDDocSave by…
Shameer
  • 11
  • 4
1
vote
3 answers

Python - create a multi-layered PDF

Is there a way to use Python to create a multiple layers PDF. But not merge. I think the multiple layers PDF means there is more than one layers in a page and I can select which layer to show in Acrobat. Here is a document I find about layered…
Xiaofeng Hao
  • 11
  • 1
  • 3
0
votes
1 answer

PDF to Text extraction for non-english language PDF

I am using DataLogic utilities(Datalogics.PDFL) to manipulate the PDF, I am facing issues with the below scenario. A PDF with non-english text getting weird output. Sample input file SS Getting output in the below format for the same: …
0
votes
1 answer

Python remove shapes from a pdf

In my setup, I have a student submit a pdf, and the teacher can annotate the pdf using the adobe embed api. This really nice since the teacher can create and delete comments. However, take the example case where a student writes their answers on a…
1
2