TCPDF is a PHP class for generating PDF documents without requiring external extensions created by Nicola Asuni. TCPDF Supports UTF-8, Unicode, RTL languages, XHTML, Javascript, digital signatures, barcodes and much more. It is a fork of FPDF.

learn more… | top users | synonyms

0
votes
1answer
8 views

outputting smarty display function return to pdf using tcpdf

hi i am using smarty to print a calendar.. this calendar is displayed using the line $html= $obj_smarty->fetch(FULLCAL_DIR.'/views/cal.html'); echoing $html in php gives me the calendar ...
0
votes
0answers
12 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)

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
10 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 ...
1
vote
2answers
28 views

CakePHP controller to save a image as pdf

I have a CakePHP controller that is taking a URL and turning it into a PDF by first turning it into an image. The PDF is being generated properly via TCPDF, but it is only displaying it. How can I ...
0
votes
0answers
20 views

tcpdf- pdf download issue with bar chart

I'm facing a terrible problem with TCPDF pdf download, I have some javascript codes to be executed to generate bar chart, $data = file_get_contents($url); Im getting data from this codes, now I ...
0
votes
0answers
29 views

2D Matrix barcode generate wrong barcode for dynamic string in tcpdf vendor in cakephp

I need to generate 2D Matrix Barcode using TCPDF vendor in cakephp. But write2DBarcode generate wrong barcode. I have generate string dynamically for it, and passing it to write2DBarcode function. my ...
0
votes
1answer
20 views

Sending dynamically stamped pdf email attachments from postmarkapp

I have a form template, i used fpdi and tcpdf to create a download link on the web application. http://www.setasign.de/products/pdf-php-solutions/fpdi/demos/tcpdf-demo/ What I now want is to be able ...
1
vote
1answer
31 views

How to write bar codes into cells with tcpdf

I'll have to print bar codes and names into some labels (image below). The point is that the bar code never gets inside the cell. It is always outside. The code I am using is here. Below is the ...
0
votes
0answers
36 views

tcpdf generates .html document in safari and opera

I am using tcpdf with Cakephp. The PDFs are downloaded good in Linux but when it comes to Mac for Opera and Safari it add .html ectension to it. I also noticed that even if it downloads as PDF ...
0
votes
0answers
45 views

TCPDF landscape custom page size issue

When I try to generate a landscape page with a custom size with TCPDF, the page does not fit to what I asked at all. Try this : require('tcpdf.php'); $pdf = new TCPDF('L', 'mm', array(210,97), true, ...
0
votes
2answers
44 views

TCPDF consuming the Memory & It is not freeing up memory

I am using TCPDF library to generate report on one of my application. When ever i generate PDF using TCPDF, chunk of memory get allocated like 256MB & after generating the PDF, that allocated ...
-1
votes
0answers
39 views

Change PDF Version 1.5 or higher to 1.4 [closed]

Currently i want to change my PDF which has 1.5 Version into 1.4 but i don't find any solution can any one help me to solve this problem with example in PHP. Thanks
0
votes
0answers
36 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
53 views

TCPDF - poor text rendering

Is using TCPDF to create PDF documents in PHP.. But when opening the PDF files the text is rendered in poor quality.. Also when printing the pages fonts are poor rendered and smaller fonts are hard ...
0
votes
1answer
76 views

TCPDF Some variables are not printing in Output file?

I am new to TCPDF PHP Library for pdf creation. I can be able to print first column of a table but could not able to print the rest. Here is my Code <html> <head> <title>Admit ...
0
votes
1answer
25 views

White image while inserting a SVG image in TCPDF

I'm trying to insert some SVG images in a PDF using TCPDF with the method TCPDF::ImageSVG, but when I try this I get a white space. If I try to enable TCPDF::setRasterizeVectorImages the image shows ...
1
vote
0answers
23 views

TCPDF align header

This is first time im using TCPDF , very good library but im not sure how to align SetHeaderData with my design Here is my code : define ('PDF_HEADER_STRING', "No. A-3-2, Kompleks Industri ...
0
votes
0answers
33 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
28 views

Imagick converts from pdf to png with white background of linux

I have a php code for creating png images from tcpdf-generated pdfs. I use tcpdf to create a pdf with some text and then convert it to png with imagick php shell. Everything works great on windows, I ...
0
votes
1answer
78 views

TCPDF image resize

I want to crate pdf with the leatest TCPDF. I have an LC6 landscape document (152mm × 109mm). I put an image to the page, and set the image parameters like this: $pdf->Image($image, 0, 0, 152, 0, ...
-1
votes
0answers
32 views

google Static Map in TCPDF

I am using TCPDF for generating PDF documents and i want to convert a google static image map into my pdf. How can i achieve this, some examples? $googleImg = '<img width="640" height="400" ...
0
votes
1answer
24 views

PDF get an .html file extenssions when saved in mac

I am having a CakePHP application where I use tcpdf for generating my PDFs, but whenever the pdf is saved into a mac computer, it gets a .html extenssion and cannot be opened until the extenssion is ...
0
votes
3answers
48 views

Parse html in php issue

I am writing html code for tcpdf.I have description saved in mysql with html tags.how can I read it in php. For example: $description = "Brand new!!! <br /><br /><br />Huge size"; ...
1
vote
1answer
64 views

generate pdf with more than 50000 records

Hi I am trying to generate a transaction report of more than 500000 records, I tried mPDF, FPDF, TCPDF. All of above creates error <i>Fatal error: Allowed memory size of 134217728 bytes ...
1
vote
1answer
119 views

TCPDF adding digital signature to the created pdf

I have kind of weird problem. I'm struggling with a pdf digital signature problem since a while and it did't working as I expect. Actually it doesn't work at all. I used exacly same code as is posted ...
0
votes
0answers
43 views

TCPDF: Unable to get image from outside document root

I'm using TCPDF and using writeHTML() for to show images and html contents. Images are outside from the document root. This scenario is working correct in Windows environment(XP, server 2008). But I ...
0
votes
1answer
94 views

Copy a PDF Stream to File

I'm calling a routine in PHP (TCPDF) from C# via WebRequest using StreamReader. The PDF file is returned as a stream and stored in a string (obv). I know the data being returned to the string is ...
0
votes
0answers
28 views

TCPDF - image displayed only once

I'm trying to generate a multiple page pdf with TCPDF version 6.0.010. The script you see below worked perfectly when I was using version 5.9.009. Every page has a logo in it. The pdf generated by ...
0
votes
0answers
68 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
1answer
90 views

CakePhp 2.x TCPDF Output Chrome

I am using CakePHP 2.x with tcpdf to create a PDF file. I want to output it now to the browser, without saving. Layout->pdf.ctp <?php header("Content-type: application/pdf"); echo ...
0
votes
1answer
60 views

Messed up special chars when reading PDF

I'm using a little PHP class (pdf2text) to open and read a "text" PDF. Currently I can't get it to handle special chars like è, ä, ö, ü and so on correctly. I tried to set the header to UTF-8 and ...
0
votes
0answers
18 views

images issue in tcpdf

i want to display images in my html to create pdf,the images display on left side of page.i have a custom page layout,what is missing here? $pagelayout = array(500, 300); $pdf = new TCPDF('P', ...
0
votes
0answers
25 views

TCPDF shows empty page

i am using tcpdf.php to create a pdf.here is my simple html,when i print html,it is ok but when i write pdf it shows nothing. require_once('../config/lang/eng.php'); require_once('../tcpdf.php'); ...
0
votes
1answer
315 views

TCPDF ERROR: Some data has already been output, can't send PDF file

I keep receiving this error when trying to add my own array into the code. Here is my array; $array = array(); while (odbc_fetch_row($rs)) { $array[] = odbc_result($rs,'Product Name'); } $test = ...
0
votes
1answer
58 views

TCPDF header issue

I want to create pdf with my own html , header and footer. Here is what I tried but it do not print. It just shows me same html $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, ...
0
votes
1answer
73 views

generated pdf open with new tab using symonfy 1.4

I am using symfony 1.4. I have application lists. From there I generated a pdf action. After generate I want to open pdf with new tab or windows. How could I do that.
0
votes
0answers
18 views

TCPDF cant able to read data from xlsx format?

If i used to read data from xls files its working, but when i used to .xlsx file for the PDF library cant able to read the content from the excel file. any one can tell me solution for this. Error: ...
0
votes
1answer
52 views

tcpdf date error Message: Undefined offset: 2

i have a date (datepicker jquery) $fecha_constancia: public function generarReporte(){ $data_b = array(); $container = $this->input->get_post('opc_report', TRUE); ...
0
votes
1answer
51 views

TCPDF: PNG image rendered incorrectly

I'm working on a project which involves TCPDF. I've been working with it for a while now but, after the last update (6.0) my PNG images get really broken although its fragments still visible on the ...
0
votes
0answers
22 views

PHPExcel Elapsed time fails on PDF output

I've PHPExcel generated sheets, with multiple cell formats. Everything is OK when i render to excel, but if i want to put it to pdf writer is cannot parse the time cell. Any idea? The cell was ...
0
votes
0answers
34 views

Euro sign and non ASCII nordic chars together in TCPDF

My output PDF includes some none ASCII nordic chars like Ø, also I need to show euro sign . When I set the character set to ISO-8859-1 or ISO-8859-15 It wont show the euro sign. and in utf-8 I lose ...
0
votes
1answer
48 views

export to pdf google input tools for non english character not working php/YII

I have made a web based software based on YII in which there is two functionality. 1) export to excel 2) export to PDF The software is in two languages. English Gujarati. To input either in ...
0
votes
1answer
93 views

TCPDF custom footer (HTML!)

I found how to create custom footers with TCPDF, but this is only applying with text. Is there any possibility to use html? There is a function called "writeHTMLCell" but it needs x and -coordinates ...
1
vote
0answers
38 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
40 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
26 views

Dealing with dynamic page height in tcpdf

We are seeking a better PHP library to generate invoice/sales order PDF's in our application. The problem we are having with our current library is that the number of rows of text per order item ...
0
votes
0answers
35 views

tcpdf set header will parallel position with body

how to set header with tcpdf, a header is a table. my case is like this.. no | name | quantity | <-- header ------------------------------- 1 | mouse | 2 | 2 | ...
0
votes
0answers
67 views

how to download byte data (pdf) response given by server in extjs4.1

i have some fields in panel. am sending user entries to the server using ajax request. In server side am using php to generate pdf[using tcpdf] file based on the entries made by user. below is the ...
0
votes
1answer
19 views

issue with TCPFT fonts

Is it possible to have Polish letters in TCPDF generated PDF => ążźśćłó? I used font which work in FPDF library named arial_ce, but with no result: $fontname = ...
0
votes
1answer
166 views

TCPDF - Codeigniter - Failed to load PDF document

Controller: public function test(){ $data = array(); $this->load->library('tcpdf'); $this->display_page($data); } test.php: (Not posting all of it, as its a bit long) global ...

1 2 3 4 5 12