Tagged Questions
0
votes
0answers
13 views
TCPDF downloads as pdf.html in safari browser
I am creating a PDF using TCPDF lib, I provide HTML to the TCPDF lib & it converts that to pdf.
Now in safari when i try to download the pdf, it gives me test.pdf.html, in all other browsers it ...
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 ...
1
vote
1answer
40 views
PDF generation with PHPExcel fails
I generate Excel reports by loading Excel sheets, that I generated with Excel and fill in some data by PHP code.
Now, I wanted to convert those Excel sheets to PDF and because I saw that the PHPExcel ...
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
0answers
12 views
TCPDF cannot recognize some css parameters
TCPDF should be on of the best php to pdf library. But it can't recognize
<style>
div.table {
font-family: Calibri;
font-size: 9px;
height:50px;
width:100px;
border:1px ...
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
72 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 ...
0
votes
1answer
24 views
Create two documents with TCPDF
I am generating long PDF document with TCPDF.
What I want is to create two versions of this document - one with all pages and one with only 5 pages.
But when I call Output whole document is destroyed ...
0
votes
0answers
59 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
0answers
69 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. ...
0
votes
0answers
140 views
phpExcel writer using tcpdf shows binary contents on screen without save prompt
I am using PHPExcel library to generate excel reports and PDF reports. Excel reports are generated fine and browser lets the user save the report. But when I use PHPExcel writer to generate a PDF ...
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 ...
0
votes
1answer
76 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
1answer
202 views
Convert POST HTML data from textarea to PDF
I have a text area in a form, when i insert some html code with table formatting, it converts in PDF on localhost with all formattings, but when i do same on my hosting shared and on my VPS both it ...
-1
votes
1answer
56 views
How to call the Last record in an array
Am I doing this right? I'm trying to call the last element in an array: $initr
My IF statements need to specifically ask if each element in the array is the last record. If it turns out true, it will ...
0
votes
0answers
113 views
TCPDF: Bumping a barcode one page back?
With TCPDF, I have been successful in creating a clean & functional 3 column layout to fit an Avery template for mailing labels, but there is just one issue and I would really appreciate a few ...
0
votes
2answers
610 views
how do you make a table like this with FPDF using PHP?
how do you make a table like this with FPDF using PHP?
I can't seem to figure out how to do this with $this->Cell
5
votes
3answers
796 views
How could you dynamically create a pdf within wordpress?
I'm using a Contact Form 7 to have the users enter data, then based on their data entry, I need to add different text to the pdf before outputting the entire pdf.
For example, if the user says they ...
1
vote
0answers
458 views
TCPDF - images are not showing up
I'm trying to save a pdf with some data from database and some images. I can save normally but images are not showing up. $ft1, $ft2 and $ft3 are database variables with image's names.
Here is my ...
1
vote
1answer
322 views
Write faster pdfs with tcpdf
I generated pdfs with tcpdf using writeHTML. What I do, I write entirely html code and after that I generate pdfs with writeHTML.
My problem is that it's very slow. Generating 5 pages of data table ...
1
vote
2answers
449 views
TCPDF do not display Chinese on Linux client
I cannot get TCPDF display any chinese character no matter what font I am using.
I crawled and searched everywhere I could, including these interesting posts
tcpdf-utf-8-problem
...
0
votes
0answers
96 views
TCPDF cover image need to adjust
I have an image, Dimensions 595 x 842. I try to use that image as a cover image for my pdf, the library i'm using is tcpdf.
$pdf->Image($file="images/cc.png", $x=0, $y=0, $w=210, $h=297, ...
0
votes
0answers
89 views
How to position data on page with TCPDF
I have to create a pdf for printing out address data on sticker page. this requires me to have a good enough positioning in order not to print the data on the border of the stickers.
anyway i have no ...
2
votes
0answers
144 views
TCPDF embedded font disappearing depending on reader
I'm having a very annoying problem using the TCPDF PHP library with embedded fonts.
I know I'm using it the right way (like the manual says) and that the fonts are correctly embedded.
Whenever I ...
-1
votes
3answers
544 views
HTML Writing in TCPDF library
I have 104 html paragraphs which are entered into my db using a text editor. Some paragraphs take one or one and half pages and some takes only few lines. When I try to generate a pdf for the whole ...
0
votes
1answer
141 views
Unwanted space in a PDF generated with TCPDF
We use TCPDF to generate PDFs. In one special case I got a strange behaviour, it looks like TCPDF puts a space inbetween two characters.
I use the cid0cs as font, the strange behaviour appears if I ...
1
vote
1answer
465 views
Best PHP to PDF library for mailing labels/price tags/custom page sizes
I'm planning a PHP project that will be replacing the basic (off-line) templates used to generate some Dymo label formats as well as Avery 5160 mailing label sheets. I've seen numerous mentions of ...
2
votes
1answer
590 views
PDF Generation in ASP.NET MVC with TCPDF
Basically I'm after advice on producing dynamic PDFs with charts, images and some styling into a view or partial view for the user to print or optionally download.
I've used TCPDF in the past, and so ...
1
vote
0answers
152 views
TCPDF, Text always italic
Im using TCPDF to automatically generate dynamic PDFs. The problem i am having is that everytime i try and render any sort of text, be that using writeHTML() or MultiCell(), or any other text function ...
1
vote
0answers
311 views
TCPDF split page is as large as whole PDF
After creating a PDF using TCPDF I need to split the PDF into single PDF pages. This is needed for a print service I'm using. I can do this with the PDFSAM app. It works great.
I only have one big ...
3
votes
1answer
2k views
HTML2PDF in PHP - convert utilities & scripts - examples & demos
I have a quite complicated HTML/CSS layout which I would like to convert to PDF on my server. I already have tryed DOMPDF, unfortunately it did not convert the HTML with correct layout. I have ...
0
votes
1answer
184 views
Printing an image to the bottom of each page using TCPDF?
is there a way to print an image to the bottom of each page? Some sort of footer alternative so to say. My image code looks like that right now:
'<p><img src="' . $footerImage . '" ...
0
votes
5answers
3k views
TCPDF set different headers for different pages in one document
Is there a way to have a different header logo for the 1st page in a document and different for the 2nd page?
I thought that changing the header data between adding pages might do the trick, but in ...
0
votes
1answer
4k views
TCPDF: How can I place an image into an HTML block?
I've been working with TCPDF for a few months now; off and on. It's worked fairly well for most of my HTML templates, but I've always had problems placing images into the PDF's. The images are usually ...
0
votes
1answer
1k views
WriteHTML / Euro symbol in TCPDF not displaying correctly
I've read all the other threads and tried everything. Here's where I'm at:
Constructor:
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, false, 'ISO-8859-1', false);
I'm running ...
0
votes
2answers
2k views
Change text color in header in TCPDF
Anyone knows how to change a color of text in header and footer and also line color??
Simply setting these two colors before setting header/footer doesn't work with:
$pdf->SetTextColor(180);
...
1
vote
2answers
8k 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
1k views
generating PDF on the fly using TCPDF
i'm using TCPDF library to generate a PDF (bill) on the fly and send it via email. It all works but i have a weird problem. When i send the email to a gmail account everything is fine, but when i send ...
2
votes
2answers
2k views
PHP: converting html file to pdf
I have an html file named welcomemailtemplate.html and I need to convert that file to a PDF.
I first read this file using the following method provided by Yii framework:
$filename = ...
1
vote
1answer
105 views
HTML setting in order to convert it properly into a PDF
I would like to get a html brochure designed and then converted into pdf via html to PDF library.
I am trying to understand what size or how the html should be created in order for it to convert ...
0
votes
0answers
1k views
TCPDF: multiple WriteCell on a line
I need to port a complex report to PHP with TCPDF.
The report is vertically divided in several sections. Every section consists of 2-3 blocks of text, of different heights.
I implemented this using ...
1
vote
2answers
1k views
What is the most efficient way to create large PDFs with TCPDF?
I am working my way through implementing a report generation solution using TCPDF. Some of my reports are small (2-3 pages), but the user has the option to select many reports at once, and request ...
0
votes
1answer
330 views
TC PDF is generating blank page
I'm very new to TCPDF. I'm trying to generate some visitor pass from database and display/save them as PDF. But it is producing Blank Page. Please help me. My full code is below.
<?php ...
0
votes
1answer
951 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 ...
1
vote
2answers
825 views
TCPDF: Mixed orientation in one pdf
Is it possible to have mixed orientation in one PDF. E.g. some pages portrait and some landscape? Or is it possible to rotate content? I can see that you can set the overall orientation can be set in ...
7
votes
4answers
3k views
FPDF.php is ~20 times smaller filesize than TCPDF.php? Why?
I know there have been a lot of posts about these two but figured I'd address a glaring question I have. A designer of ours recently sent me a few files with TCPDF already tied in because a friend of ...
0
votes
2answers
228 views
How to generate Courier New U+2588 █ symbol by TCPDF?
I need to generate the symbol U+2588 █ (Courier New) with TCPDF. I am currently using the TCPDF::Rect to get something similar.
0
votes
2answers
5k views
Cakephp TCPDF error: TCPDF ERROR: Some data has already been output, can't send PDF file
I have installed TCPDF following instructions on below link:
http://bakery.cakephp.org/articles/kalileo/2010/06/08/creating-pdf-files-with-cakephp-and-tcpdf
However when I put this through ...
0
votes
1answer
260 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 ...
-1
votes
1answer
161 views
How uses helper callbacks to generate a PDF from the contents with TCPDF?
Hi i am trying create a helper to convert a entire html from a CTP to PDF using tcpdf->writeHTML();
I have tried:
function beforeLayout(){
ob_clean();
ob_start();
$pageOrientation = ...