PoDoFo is a C++ library to work with the PDF file format.
Questions tagged [podofo]
85 questions
1
vote
0 answers
Property load cannot be found for forwarded class object pdfmemdocument
I'm using PoDoFo library for digital signature on pdf. its working fine for new pdf but now I want to implement same functionality for existed pdf and while doing that I am getting following prob.

Sunil aruru
- 497
- 5
- 18
1
vote
0 answers
Digital Signature Appearance appearance
I was able to produce an invisible digital signature using
PoDoFo. It is correctly recognized and verified by adobe reader.
Now I
have to add an appearance to the related annotation to make it visible.
I'm carefully following the abode directives…

Sunil aruru
- 497
- 5
- 18
1
vote
0 answers
How to sign on existed pdf using podofo?
I have a project which uses PoDoFo for digitally signing on pdf. i have done successfully digital signature on new pdf file and how to do on existed pdf file?
Here is my code :
PoDoFo::PdfPage* pPage;
const char *path1=[path…

Sunil aruru
- 497
- 5
- 18
1
vote
2 answers
Output text vertically flipped when modify pdf
I had a problem using podofo to modify pdf document, if you had time, please help me solve it!
I found podofo source on http://podofo.sourceforge.net/download.html , I compiled it on windows 7 x86, and I found podofo's function is very powerful.
But…

c.t2008
- 27
- 5
1
vote
0 answers
PoDoFo installation in Ubuntu(Linux)
I compile and installed PoDoFo in Ubuntu. But /usr/include and /usr/lib doesn't have any entry. I need it to work with my programs. Could you please let me know by default where the header file and lib files are installed? And how I can installed…

user1428258
- 101
- 1
- 4
1
vote
1 answer
podofo writes unwanted stuff to stderr
I am using this line in my code:
PdfMemDocument doc(path);
And podofo writes this to stderr:
<<27598670A0B3314EB669BB62DEB4F7FD>]/Info 126 0 R/Prev 503377/Root 1 0 R/Size 1107/XRefStm 500774>>
<<27598670A0B3314EB669BB62DEB4F7FD>]/Info 126 0 R/Prev…

andrew
- 97
- 1
- 10
1
vote
1 answer
Constructing PdfXObject using PoDoFo
I am using the C++ library PoDoFo (http://podofo.sourceforge.net/) and what I am trying to achieve is embedding a PDF page into a new blank PDF document.
The documentation for the constructor I am using is here:…

Kurt McAlpine
- 93
- 6
1
vote
0 answers
Pdofo Extract Signature Field
i'm using PoDoFo to extract some signature data from a Signature Field.
I searched a lot of guide and i found this piece of code (can't remember the article or i would have linked it).
int getNumberOfSignatures(const PdfMemDocument &doc)
{
///…

Razlo3p
- 455
- 2
- 7
- 28
1
vote
0 answers
podofo library creating bigger pdf file
I am using podofo 0.9.3 library for digital signing pdf document using PdfSigIncMemDocument class. I am able to digitally sign pdf without any issue, but the output pdf file size is very big.
Here is my code
PdfSigIncMemDocument …

Deva
- 66
- 6
1
vote
0 answers
Issue with digital signature generated using Podofo library
I'm using OpenSSL to generate digital signature for a PDF by PoDoFo library.
Here is the logic for signature handler
OpenSSLSignatureHandler.h
#import
// OpenSSL includes
#include
#include…

Jagadeeshwar
- 863
- 11
- 25
1
vote
1 answer
How do you build PoDoFo on iOS with Openssl support?
I have a project which uses PoDoFo for digitally signing PDF so I am trying to integrate CTOpenSSLWrapper into a single project which uses both PoDoFo and OpenSSL libraries. But when i try to build it, iam getting issues with linking:
The same…

Jagadeeshwar
- 863
- 11
- 25
1
vote
1 answer
How to fix include errors in resulting Visual Studio project from cmake
Please scroll to the bottom to list the updated short question
I am building PoDoFo. In the final step, I am using cmake to create the Visual Studio 2010 .sln file for PoDoFo. However when I build this solution file, it can't find header files of…

zar
- 11,361
- 14
- 96
- 178
1
vote
1 answer
PoDoFo library crash in ios 7 but working in ios 6 and earlier
i am using PoDoFo library for standard PDF annotation it working ios6 and earlier when i upgrade app into ios7 it display EXC_BAD_ACCESS like this
it crash in this code
PdfMemDocument *doc1 = [APDFManager…

kirti Chavda
- 3,029
- 2
- 17
- 29
1
vote
2 answers
How do you build PoDoFo on Windows with libcrypto support?
I have a project which uses PoDoFo for PDF support and I am trying to update it to use the HEAD version from the SVN tree.
The big change from the last version I used is the addition on libcrypto from OpenSSL, which seems to be required. I…

Ferruccio
- 98,941
- 38
- 226
- 299
1
vote
1 answer
Update Widgets in PDF using Podofo
I am using PdfAnnotation.SetContents to set the value of an annotation.If the annotation is of type FreeText, only then this method correctly works and the value gets displayed on the PDF (using PDF Reader).If the type is Widget, the value gets set…

Qamar Suleiman
- 1,228
- 2
- 18
- 31