-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi Guys,
I have go TCPDF setup in my cake php install and am now trying to also use FPDI with it as i need to add a PDF to the start of the PDF that is being generated.
WHen trying to do this i am using 3 classes
XTCPDF which holds my header data
FPDI - FPDI class
TCPDF - TCPDF class
and it…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Is it possible to make nested table fit height of its parent cell in TCPDF?
My code:
<?php
require_once('tcpdf/config/lang/eng.php');
require_once('tcpdf/tcpdf.php');
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
$pdf->SetFont('times'…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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 style="margin-left: auto; margin-right: auto; width: 50%">
<table border="1" width="200" align="center"><tr><td><b>Invoice…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
How can I create a new document using other pdfs that I'm generating?
I have methods to create some documents, and I want to merge them all in a big pdf, how can I do that with TCPDF?
I do not want to use other libs.
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm using TCPDF in CakePHP and trying to make some background (grey) for few cells. Well here the idea:
so the grey thing would somehow have to be define outside of the cells containg text.
Any ideas?
Paul
>>> More