Tagged Questions

2
votes
1answer
93 views

Codeigniter HTML table is not drawn with TCPDF

I'm doing a report generator with codeigniter and I'm using tcpdf to create my pdf files. First I create the table from the query result in codeigniter like this: $query = ...
1
vote
1answer
86 views

Position h1,h2,h3 and other tags with TCPDF

I am trying to make a PDF document with TCPDF using HTML code. At the moment I use this code: // set font $pdf->SetFont('dejavusans', '', 36); // add a page $pdf->AddPage(); $html = ' ...
1
vote
2answers
750 views

TCPDF - How to adjust height of header?

I am using TCPDF to convert html to pdf format. I am passing a string into the php script to be set as my header. I am having a hard time setting the height of my header. I have tried using ...
1
vote
1answer
76 views

There in PDF not change the style which i have added in HTML?

In my site, I am using the TCPDF to generate the pdf from HTML ,and i also using the image in header but i can't show the style which i added in html. Ljubljana,'.date("d.m.Y").' ...
1
vote
1answer
488 views

I have two problems about tcpdf

Hi i am using tcpdf in my application and i have two question about that.I am able to get pdf output of a html page when i click specified button. My first question is:How can i download that html's ...
1
vote
4answers
4k views

How to center html table?

Trying to create proper PDF document, using PHP and TCPDF. Can you help me, how can I use writeHTML function to create and center table, in TCPDF? Tryed with: $html = ' <div ...
0
votes
2answers
88 views

HTML Rendering with TCPDF(PHP)

I am using TCPDF's writeHtml function for a page that renders properly in the browser. In the output PDF, the fonts are too small. I've tried with setFont, but it doesn't seem to have an effect. Does ...
0
votes
2answers
62 views

Column break in HTML/php coding issue

I have a SQL pupil's list sorted by classes and this list goes into TCPDF to create a PDF 2 columned list. My issue is that I can't find the way to break the line. What I know is that a column can ...
0
votes
0answers
53 views

TCPDF inline style margin being stripped

I'm using TCPDF 5.9.141 to convert some HTML text to PDF. I'm finding that even in a very basic example, TCPDF is stripping style='margin-left' from [p] tags. Blockquote works ok, but replacing ...
0
votes
0answers
62 views

TCPDF HTML Tags <>Confusion

I am using TCPDF for a some assessments that I am creating for my elementary students. Everything worked fine until I got to the greater and less than part. When ever I wanted to type in the greater ...
0
votes
1answer
167 views

TCPDF Image from Database HTML not Displaying

I am using TCPDF and getting content from a MySQL table row which is holding HTML like: <p><a href="x.html"><img src="http://1/2/3/x.jpg" width="x" height="x"></a></p> ...
0
votes
1answer
32 views

how can I make a border around the whole page using TCPDF

Just as the title asks. I've been struggling with using TCPDF for reports for the website i work on and my boss wants some of them to have a table stretching all the way down to the bottom of the ...
0
votes
1answer
39 views

How can I make a table (or part of a table) fill the rest of the container, height-wise

Basically I'm trying to set up a layout to print bills with tcpdf and I want the bottom part to take up the space remaining after I print the products and services and stuff. I'm wondering if I can ...
0
votes
0answers
177 views

Speed Up TCPDF File Generation

I've been using TCPDF in order to convert HTML to pdf. I noticed that single page invoice is generated in 5 seconds while a 7 page invoice is generated in 55 seconds, for a reason I can't tell. I'm ...
0
votes
2answers
447 views

PHP TCPDF Multiple WriteHTML() Not Working

I've written some code which created reports and then exports it to .PDF using TCPDF. I want to send different parts of the report to mail , therefor I need to use the function WriteHTML() more than ...
0
votes
1answer
82 views

Tcpdf-Convert current webpage as PDF

How to Convert current webpage as pdf using tcpdf? OR is there any other way to do that? i want to include to pdf some contents in the current webpage. Can anyone tell the function to add current ...
0
votes
1answer
255 views

tcpdf doesn't priting HTML document with image properly - PHP

My code to convert HMTL to PDF using tcpdf. $html = '<pre> <br/> <h3><a href="/node/02" title="View Original Document">aa</a></h3> ...
0
votes
1answer
246 views

Can php code execute while creation of pdf using tcpdf?

I m working on module in which i have to make pdf from php page. I m Using tcpdf for that but m facing one problem that file contain some mysql queries and php coding which is not executed by pdf ...
0
votes
1answer
77 views

Any way to export some html/css to an image?

Basically I have an <ul> list with a few <li> items styled with CSS that may change proprieties ( jquery click adds a class with different background). I'm using TCPDF library to generate ...
0
votes
1answer
244 views

TCPDF Setting Fixed Border

I am converting a HTML in PDF using tcpdf using PHP. Kindly view the output here for the below given content. <div style="text-indent: -76.5pt; margin: 0in 54.9pt 0pt ...
0
votes
1answer
81 views

How to getlength of a string in tcpdf?

In TCPDF there is GetCellHeight() for measuring the height of a cell. But how do you measure the length or width of a string (or block of string) in TCPDF ?
0
votes
1answer
173 views

text flowing out of border in pdf

I have created a pdf using tcpdf in php. i have a table with one row and one column. when i put the content from a form which is a textarea, the content in the form flows out of the table border. how ...