Tagged Questions

PDFLib is a library for generating and manipulating files in Adobe’s well known Portable Document Format (PDF).

learn more… | top users | synonyms

4
votes
3answers
258 views

PHP wrapper that is API-compatible with PDFlib

Are there any wrappers to any of the other PDF generating packages for PHP that provide API compatibility with PDFlib? Our company has been generating PDFs from PHP using PDFlib for many years, but ...
3
votes
3answers
304 views

PDF Parsing with Text and Coordinates

I am currently using PDF Box to parse a pdf and I am trying to figure out how to retrieve data about the text such as the font (bold, size, etc) and the location of the font. Any suggestions?
3
votes
2answers
188 views

PDFLib in PHP hogging resources and not flushing to file

I just inherited a PHP project that generates large PDF files and usually chokes after a few thousand pages and several gigs of server memory. The project was using PDFLib to generate these files 'in ...
3
votes
1answer
1k views

How can I get the number of pages in a PDF file in Perl?

Is there any Perl script to read multiple PDF files and get the number of pages in it? By using PDFlib or pdftet.
2
votes
3answers
192 views

How to create PDF file using iText or some other library on android?

How to create PDF file using iText or some other library on android? Is there any tutorial on iText for android? Thanks
2
votes
3answers
116 views

how to remove a character in pdf using pdflib

I want to remove a hidden space in PDF using PDF lib. When I extract a word "Gregor" in PDF it comes out as "Gre gor", but I really want it like "Gregor". What could be reasons for this? Or, how can ...
2
votes
6answers
416 views

How do I gather output from an external command in a Perl script?

I have a a tool named TET.EXE, product of the PDFlib family, it is used to extract the co-ordinates of a particular text. Using those coordinates in the Perl script we can extract the required text. ...
1
vote
1answer
15 views

How can I set custom meta tags with the pdflib library?

I am using pdflib library to generate pdf in php. I am able to create the pdf with this library but yet not able to generate custom meta tags for pdf. can any one help me out from this, so that I'm ...
1
vote
0answers
41 views

PDFlib works only if the library is in /usr/lib not in a custom path

we are using PDFlib for personalizing PDFs. The pdflib.jar library and the libpdf_java.so file are both in the folder: /home/user/my/custom/library/path/ I start the server with this argument: ...
1
vote
1answer
93 views

PDFlib 7 & 8 changes?

I've been trying to find a list of changes in PDFlib 7 & 8, but all I can find is references to "please see the documentation for details". For example, the "change log" link here: ...
1
vote
3answers
315 views

How to find x,y location of a text in pdf

Is there any tool to find the X-Y location on a text content in a pdf file ?
1
vote
2answers
340 views

Use PDFLib to search through PDF's with PHP

I'm about to rent my own server and for one of my projects I need to be able to search through PDF files. I've asked the hosting provider to install xPDF but they replied they want to install PDFLib ...
1
vote
1answer
174 views

PDFLib opinions/experiences

My organization is considering PDFlib for dynamically creating PDF files (http://www.pdflib.com/) in our Java (Spring/Tomcat) environment. Does anyone have experiences that they can share about the ...
1
vote
2answers
548 views

Pdflib Java api

Does somebody knows a high level Java API that wraps the pdflib (horrible) Java API that is actually easy to use. To clarify, I have to use pdflib (my company uses it), so I need a wrapping API, not ...
1
vote
3answers
1k views

PDFLib: Can't open a PDF file

Following are the PHP code lines which I am using to open a PDF file: $pdf_generartor = new PDFlib(); $doc = $pdf_generartor -> open_pdi_document("Report.pdf", "") or die ("ERROR: " . ...
0
votes
0answers
13 views

pdflib 8 - text wrap in continue_text or similar function

i'm working with pdflib 8 and adding alot of different strings using the continue_text function. for example: p.continue_text("Title"); p.continue_text("Leadtext"); now i need to add some ...
0
votes
1answer
29 views

installing PDFLib to PHP 5.3 on Mac OSX 10.6

I'm trying to install PDFLib (http://www.pdflib.com/) into Apache/Joomla running on my Mac OSX 10.6 pc. The procedure I've followed is: copy /PDFlib-7.0.5/bind/php5/php-530/libpdf_php.so to: ...
0
votes
1answer
49 views

Complile errors when installing PDFLib on Ubuntu Natty 32-bit

I'm trying to compile PDFLib on Ubuntu Natty (11.04) 32-bit. However, I'm running into a few issues at the 'make' stage. Just to recap: I downloaded PDFLib from here I Extract the contents and cd ...
0
votes
0answers
22 views

HTML form to php which makes pdf

so I have an HTML form with input, then passing it to php, doing check on $_POST array and encoding is fine, but after making pdf with PDFLib my languages special symbols changes to weird symbols... ...
0
votes
0answers
247 views

pdflib - sh: phpize: command not found

I need my website to generate a pdf file. I was planning on using PDFlib. When I try install it through the PEAR graphic interface, I get the error message "sh: phpize: command not found". Does ...
0
votes
1answer
215 views

how to install pdflib on wampserver

i want to install pdflib on my wampserver2 i have download pdflib from http://www.pdflib.com/download/. and i have set in myphpini file extension=php_pdflib.dll but still getting Call to undefined ...
0
votes
1answer
163 views

pdf_load_font() function, fatal error

<?php $pdf = pdf_new(); pdf_open_file($pdf, "philosophy.pdf"); pdf_begin_page($pdf, 595, 842); $arial = pdf_load_font($pdf, "Arial", "host", "embedding=true"); ...
0
votes
3answers
261 views

How to make business card with fpdf or tcpdf or others? When i have a jpg background and text overlap requires?

I have a jpg image for the business card layout with dimensions: 9,8 cm/5,9 cm. I have to put it as background layout and on top of this layout i have to print name/address/telephone number email etc. ...
0
votes
1answer
470 views

Is PDFLibNet.dll or It has any licence for commercial products? [closed]

I am using PDFLibNet.dll (got here: http://www.codeproject.com/KB/applications/PDFViewerControl.aspx?msg=3154388 ) am not sure whether I can use it for commercial purpose (Licence) ? Any help is ...
0
votes
1answer
235 views

Creating Tables With PHP Using PDFLib

I was wondering if there was a good source on how to build tables using the PDFLib for PHP. I am planning to populate a PDF Document with a Database Table (well a few that I join together to create a ...
0
votes
1answer
218 views

Fatal error: Uncaught exception 'PDFlibException' with message 'Couldn't find encoding 'cp936'

I encounter this problem Fatal error: Uncaught exception 'PDFlibException' with message 'Couldn't find encoding 'cp936'... It gives this error when running on the computer that localization is ...
0
votes
0answers
9 views

Listing all blocks within a PDF template

Currently I have a PDF template that has some blocks defined. I need a listing of all blocks within the PDF document so I can begin to write some scripts to handle the data input. The company I work ...
0
votes
1answer
291 views

PDFlib Unable to load dynamic library

I'm trying to make PDFlib to work on wamp. I've downloaded http://www.pdflib.com/download/pdflib-family/pdflib-7/ and followed the installation guide .. I took the libpdf_php.dll and i copied it ...
0
votes
1answer
121 views

How to Use--PDF_add_thumbnail function of PHP?

I have a PDF file ad I want to add a image in the document, so I found a function in PDF lib as "PDF_add_thumbnail" so could any give me an example of how to use the function thru an example?
0
votes
2answers
181 views

How to create font preview image from font file one Linux?

I am wondering if there is any easy / possible way to create a "font preview image" file for a given font file on the Linux command line. You know, like when you click on a font file in Linux or ...
0
votes
2answers
101 views

Generating PDFs directly to path on s3fs (mounted Amazon S3 bucket)

Has anyone used the s3fs utility for Amazon S3? I have some scripts that generate large PDF documents on-the-fly, most will be in the 10+ MB range, but some will be perhaps 2 GB. Is there any danger ...
0
votes
1answer
248 views

How to set target on url action in PDFLib, php function PDF_create_action

I've added URL's to a PDF created with PHP's built in functions. I have not been able to figure out how to have the links open in a new window, ie target="_new". I've been looking for the available ...
0
votes
1answer
208 views

PDFlib give pdf_fit_textline a border

I'm generating PDFs dynamically using PHP and PDFlib and some of the fields require text being centered on blank fields lines (like you would see on a paper form). To make sure I have the text field ...
0
votes
3answers
126 views

Pattern matching text in the body of a PDF and adding hyperlinks with PHP

The situation is as follows: I have a series of big, fat PDF files, full of imagery and randomly distributed text - these are the sections of a huge promotional pricelist for a vast array of products. ...
0
votes
1answer
405 views

(pdflib) Table of contents with dynamic page numbers

I'm on pdflib 7 under php5 and I'm drawing a statistical report with several sub topics over several pages. Now, I want to include a table of contents on the first page where every sub topic is ...
0
votes
3answers
2k views

PDFLib giving an uncaught exception error

I'm trying to get PDFlib support into PHP, but after finally figuring out how to install PDFlib, I get this error: Fatal error: Uncaught exception 'PDFlibException' with message 'Function must not be ...