Tagged Questions
1
vote
1answer
34 views
Generating temporary PDF via .exe or .NET from PHP
In Short...
I have an ASP.NET script that generates a PDF based on parameters passed to it. Firstly, I need to be able to call this script from PHP, and secondly, I need to ensure that the file is ...
0
votes
1answer
16 views
HTML to CMYK .pdf file for print
I'm working on a new web application where users can drag and drop their own elements to create a printable design. The application then creates a .pdf file that is send to the printing studio, prints ...
1
vote
0answers
27 views
PHP tcpdf shrink print multiple pages in one
I have been looking for a solution but can't find anything works right off the bat. The objective is to make a hand-out style page out of a multi-page PDF document. Just like we can choose 6-up in ...
0
votes
0answers
21 views
yii pdfable data getting cut off at bottom
I am creaing a pdf using pdfable in Yii. I have managed to create the pdf document however on each page there is data being cut off if I set a margin for the top and bottom of each page. In my ...
0
votes
0answers
23 views
Multitple pages apper when genarating pdf using mpdf
I am trying to generate a .pdf file from .html page source .
For this I am using mpdf tool and PHP as scripting language and smarty framework.
My code goes here
$path = realpath(MODEL_DIR . ...
1
vote
1answer
59 views
Export HTML divs in one PDF file
I have the following div that contain other divs that are shown or hide based on inputs buttons for each of them:
<div class="insightsgraphs">
<div id="dailyNewLikes"><img ...
0
votes
1answer
33 views
How to modify existing word docx file using phpdocx
I would like to modify my existing word ( docx ) file using phpdocx. How it is possible to set borders on my current word file Using php docx ?
0
votes
0answers
19 views
Font-Change in PDFs created with TCPDF
we create or invoice, etc. documents with tcpdf, which works fine so far.
Now we inserted a font with chinese characters for our customers in china. The first font looked a bit weired, so we switched ...
0
votes
2answers
43 views
reducing the size of generated pdf using FPDF
I'am generating pdf for every pages in a pdf file using FPDF. Its working properly. But the main problem is with the file size. Some files have size of more than 2Mb.I want to limit the size. Can i ...
0
votes
1answer
27 views
MPDF - fseek error
I am trying to merge files together into one pdf. The files could be pdf, png or jpg files. Images work fine, its only when I try to export the pdf files that I get an error. The error is show below.
...
0
votes
0answers
109 views
Running PhantomJS from PHP starts multiple processes and doesn't complete
I'm trying to use PhantomJS to render a fairly complex page, with lots of dynamically created content from AJAx calls, to a PDF file.
I'm using the rasterize.js example provided and it's working ...
0
votes
1answer
43 views
Auto fitting a cell to the size of the content?
I'm new to tcpdf, creating my first document.
I wonder if there is a way to fit the width of the cell automatically to the content. I currently only see options for fixed size, or taking the whole ...
0
votes
0answers
77 views
In a PDF created from “merging” multiple PDFs using pdftk, is it possible to create link from PDF 1 to PDF 2 (or PDF 3) [closed]
I'm running into a lot of frustration here and I'm wondering if I am trying to do something that is impossible.
I have to generate a PDF based on dynamic user input, so it's variable length. This ...
4
votes
2answers
81 views
Is it possible to Generate a Pdf Design by using Fpdf
I want to Generate a Pdf in Php Using FDPF. can we draw a table in fpdf. I want to Design a Table In the Image given Using FPDF.Is it Possible. I am new to fpdf Please help me. I want Above table ...
-1
votes
1answer
86 views
PDF generation with Dompdf not working for large data [closed]
I am using Dom pdf to generate a pdf file. IF there are 1000 records in table format of html then it takes minimum 20 minutes to generate but most of the time it displaying the following
error
No ...
0
votes
0answers
40 views
Error while creating pdf file in php
i used this code to create pdf from posted data :
header('Content-Type: application/pdf' );
header('Content-Disposition: filename=cert.pdf');
$date = date('F d,Y');
// open our template file
...
0
votes
1answer
49 views
How to merge PDFs with only PHP and keep internal and external links
How to merge PDFs with only PHP and keep internal and external links?
Simple question but I can't find a solution. It is no access to shell so pdftk and so on is unacceptable.
I'm looking for pure ...
0
votes
0answers
77 views
Getting data from the DB and converting it to PDF
I've a page which I want to generate a pdf file whenever someone adds data to the database. I have everything done but the pdf script.
I Googled it, and I found a library called "FPDF". Downloaded ...
1
vote
1answer
105 views
Why hyperlinks lost after merging PDF files using mPDF?
I have to merge some pdf files with hyperlinks inside. Merging with mPDF is fine, but there are no hyperlinks in output file! There are text only left.
require_once('./mpdf/mpdf.php');
$mpdf = new ...
0
votes
0answers
28 views
Add some code to my php script header to only allow one form to run it
I have a simple php script which runs behind an adobe pdf form. When the pdf form is completed, the user clicks submit. The PDF form is then saved to the server before being e-mailed to me.
However, ...
0
votes
0answers
61 views
TCPDF - Not displaying UTF-8, latin characters
Im using TCPDF to generate pdf document with latin characters:
//TCPDF
require_once('class/tcpdf.php');
require_once('class/fpdi.php');
$pdf = new FPDI();
$template = "template.pdf";
$pagecount = ...
0
votes
1answer
23 views
how to see if a page on a pdf contains specific text
I want to programtically find all pages in a PDF that contain a certain substring and if they do then I want to replace that page with another PDF. Replacing that page isn't a problem - I can do so ...
0
votes
1answer
45 views
DomPDF - Changing the point/pixel ratio
I'm trying to use DomPDF to generate a PDF out of some HTML. I need the page to be 20mm x 20mm, so I use the following:
CPDF_Adapter::$PAPER_SIZES['my_square_page'] = array(0, 0, 566.929134, ...
0
votes
1answer
50 views
MPDF - large table
I am generating table with mPDF, that is larger than 1 page (about 4-8 pages) and a have problem, that some rows are separated on their own pages. How to join them to one big table?
1
vote
3answers
71 views
PDF generator with high performance [closed]
I'm looking for a high performance PDF generator..
Is not looking for at library in pure PHP because they are just too slow..
My current generator is TCPDF, but its to slow.. Uses to many resouces
...
1
vote
2answers
162 views
php and dompdf - how to generate a large pdf without having my server come to a screeching halt
I'm attempting to render a largish html table to pdf with dompdf. There is minimal css styling, but maybe 200 - 300 rows in the table. Each row has 4 td's with basic text.
I can generate a pdf of ...
0
votes
1answer
44 views
drawing alpha transparent rectangles to PDF from PHP
I am currently using FPDF to generate PDF files. What I would need is to draw alpha-transparent rectangles (say with opacity 0.5) on top of an image.
I cannot find how to do this in FPDF, since ...
0
votes
0answers
72 views
TCPDF, multiple font sizes in single Cell
Is it possible using TCPDF native methods to create text within $this-Cell() of two different sizes? Basically i'm trying to recreate the html tag to create a superscript within a table header. ...
1
vote
2answers
284 views
Exporting PDF from MySQL query results using PHPExcel
I am using PHPExcel for exporting MySQL query results in Excel and CSV formats, but I have been unable to do the same and exporting the results as PDFs.
Below is the code Im using to do this:
...
5
votes
1answer
133 views
Export an php page to pdf [duplicate]
I have a php page which consist of table data and below few funnel charts.
I want to export the page to pdf with headers and footers
Can anybody tell me how to export it using javascript or jquery or ...
0
votes
1answer
109 views
wkhtmltopdf is returning blank pages for some urls
I have installed the wonderful software wkhtmltopdf on our production Debian server to be used for creating PDFs from URLs. We stream (i hope that's the right term) the resulting PDF to the client, we ...
0
votes
2answers
95 views
How use wkhtmltopdf on shared server
I'm using installation of wkhtmltopdf (I even copied instalation from other directory) on my localhost (windows xp) simply by callling exec function. Everything works good.
How can I use it on linux ...
0
votes
1answer
181 views
FPDF email attachment and outlook
I am trying to work with FPDF and attach the resulting file to an email. I have seen this post Email PDF Attachment with PHP Using FPDF and the answer given works when sending an email to my self and ...
1
vote
0answers
52 views
tcpdf auto size text field
I am having trouble getting a text field to auto size on a form I'm creating. I am setting the textSize of the properties to 0 in the properties of the TextField but it seems to just use the font set ...
1
vote
1answer
142 views
Programatically DOC/DOCX to PDF
I'm having an issue trying to convert DOC/DOCX to PDF programatically. I'm following this answer.
I'm using PyODConverter as mentioned in the answer above.
I asked my web hosting to install ...
0
votes
1answer
79 views
TCPDF: MultiCell when auto addpage
I'm doing a report with TCPDF, but in MultiCell when a new page is generated characters are mounted on another. How I can fix this?
0
votes
0answers
77 views
is there any way to generate multiple pdf files?
is that possible to generate multiple PDF Files. I'm using html2fpdf source code that generated PDF File but problem is that html2fpdf generating single pdf file and PDF Overwritten On The Same PDF ...
0
votes
1answer
98 views
Using html2pdf to generate a report using php and mvc pattern
I have setup an application that somehow uses a front-controller. And I came across a library called html2pdf. This library converts html to pdf.
Like this:
<?php
$content = "
...
0
votes
0answers
105 views
mPDF->SetTopMargin causes page break
I am automating pdf construction with mPDF (a php library). Several pages of the pdf need to have a top and bottom margins of different sizes.
I am calling $mpdf -> WriteHTML($html_segment, 2) for ...
0
votes
1answer
391 views
dynamic php webpage save to pdf [duplicate]
I am creating an invoicing application that generates a dynamic invoice via php/mysql in the browser windows. Tables and css are part of the makeup.
I was thinking it would be nice to have a button ...
0
votes
1answer
111 views
Using dompdf with absolute links
I am using the standard DOMPDF code to render existing web pages (e.g.1):
$dompdf = new DOMPDF();
$dompdf->set_base_path($artpath);
$dompdf->load_html_file($artpath);
$dompdf->render();
...
0
votes
0answers
82 views
how to generate a pdf from webservice on a linux server
I am on a shared hosting (dreamhost) server
I need to generate a pdf from mysql data. I am accessing the data using php. I am currently emailing using javascript, phpmailer and html - but instead ...
0
votes
0answers
39 views
PHP data into PDF and flatten
Yes, there are a ton of questions and articles about this... but most of them are for <PHP 5.3 and/are now no longer supported.
I have a PDF template that I need to be able to add data to, ...
1
vote
0answers
221 views
Arabic character not work in DOMPDF
I have an issue with arabic character when used in DOMPDF .. I tried every thing but nothing is working...
My DOMPDF version is the last, I tried to install font and set the charest to UTF-8 and ...
0
votes
0answers
231 views
php mpdf memory limit error
For the first time im using mpdf library and everything worked fine.
I wrote a script to create pdf file which consist a table of 274 rows. When i run the script i get php memory error. I tried ...
0
votes
1answer
59 views
Converting images to pdfs server side
I'm currently working on a project involving converting form results to a downloadable PDF, which is simple enough. I was recently asked, however, to add attachment functionality. I'm using dompdf to ...
0
votes
1answer
108 views
wkhtmltopdf and multiple pages
i am trying to convert html pages like this one click here
into a pdf. when i use wkhtmltopdf i ve get this result click here
the options i ve used are:
xvfb-run --server-args="-screen 0, ...
0
votes
1answer
71 views
Bold/italic text not shown (hidden) in PDF generated with Cpdf (aka Cezpdf or R&O's PDF Creation)
Bold and italic text is not shown in the generated PDF.
$pdf = new Cezpdf();
$pdf->addText(65,675,10, '<b>Hidden</b> Shown');
// Doing more stuff to the PDF ...
$pdf->output();
...
1
vote
0answers
418 views
how to export my sql table to a .doc file using php and download it
I have a table with large amount of data in my sql database, i have to take a copy of .doc or .pdf format using PHP coding.
I have to download while clicking the Download Button in my Page.
In my ...
0
votes
2answers
173 views
Dynamic Web based template designer to generate pdfs (from database data) [closed]
I am currently working on a project for which I haven't found a solution yet, although i've been searching the web (stackoverflow included, obviously) for nearly 2 days.
The company i am working for ...




