2017 © Pedro Peláez
 

library tcpdi

TCPDI is a PHP class for importing PDF to use with TCPDF

image

jtripper/tcpdi

TCPDI is a PHP class for importing PDF to use with TCPDF

  • Thursday, June 7, 2018
  • by JTRipper
  • Repository
  • 1 Watchers
  • 1 Stars
  • 7,843 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 32 Forks
  • 0 Open issues
  • 4 Versions
  • 24 % Grown

The README.md

TCPDI

Composer ready TCPDI., (*1)

PDF importer for TCPDF, based on FPDI. Requires pauln/tcpdi_parser and FPDF_TPL which included in the repository., (*2)

Installation

Link package in composer.json, e.g., (*3)

{
    "require": {
        "jtripper/tcpdi": "dev-master"
    }
}

Usage

Usage is essentially the same as FPDI, except importing TCPDI rather than FPDI. It also has a "setSourceData()" function which accepts raw PDF data, for cases where the file does not reside on disk or is not readable by TCPDI., (*4)

// Create new PDF document.
$pdf = new TCPDI(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);

// Add a page from a PDF by file path.
$pdf->AddPage();
$pdf->setSourceFile('/path/to/file-to-import.pdf');
$idx = $pdf->importPage(1);
$pdf->useTemplate($idx);

$pdfdata = file_get_contents('/path/to/other-file.pdf'); // Simulate only having raw data available.
$pagecount = $pdf->setSourceData($pdfdata); 
for ($i = 1; $i <= $pagecount; $i++) { 
    $tplidx = $pdf->importPage($i);
    $pdf->AddPage();
    $pdf->useTemplate($tplidx); 
}

TCPDI_PARSER

Parser for use with TCPDI, based on TCPDF_PARSER. Supports PDFs up to v1.7., (*5)

The Versions

07/06 2018

dev-master

9999999-dev

TCPDI is a PHP class for importing PDF to use with TCPDF

  Sources   Download

Apache-2.0 Apache 2.0

The Requires

 

pdf tcpdf tcpdi tcpdi_parser

07/06 2018

1.0.2

1.0.2.0

TCPDI is a PHP class for importing PDF to use with TCPDF

  Sources   Download

Apache-2.0

The Requires

 

pdf tcpdf tcpdi tcpdi_parser

06/06 2018

1.0.1

1.0.1.0

TCPDI is a PHP class for importing PDF to use with TCPDF

  Sources   Download

Apache-2.0

The Requires

 

pdf tcpdf tcpdi tcpdi_parser

05/04 2016

1.0.0

1.0.0.0

TCPDI is a PHP class for importing PDF to use with TCPDF

  Sources   Download

Apache 2.0

The Requires

 

pdf tcpdf tcpdi tcpdi_parser