Download the PHP package ponyfleisch/fpdf-stream without Composer
On this page you can find all versions of the php package ponyfleisch/fpdf-stream. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download ponyfleisch/fpdf-stream
More information about ponyfleisch/fpdf-stream
Files in ponyfleisch/fpdf-stream
Download ponyfleisch/fpdf-stream
More information about ponyfleisch/fpdf-stream
Files in ponyfleisch/fpdf-stream
Vendor ponyfleisch
Package fpdf-stream
Short Description FPDF Version that supports streaming directly to the browser
License MIT License
Homepage http://github.com/ponyfleisch/fpdf-stream
Package fpdf-stream
Short Description FPDF Version that supports streaming directly to the browser
License MIT License
Homepage http://github.com/ponyfleisch/fpdf-stream
Keywords pdf
Please rate this library. Is it a good library?
Informations about the package fpdf-stream
fpdf-stream
This is a modified version of fpdf (1.7) which outputs pdf generation directly to the browser as it is generated page by page.
Still pre-alpha.
Usage
header('Content-Type: application/pdf');
header('Content-Disposition: inline; filename="schnitzel.pdf"');
$pdf = new Pdf();
$pdf->startOutput();
for($i=0; $i < $pages; $i++){
$pdf->AddPage();
ob_flush();
$pdf->SetFont('Arial','B',16);
for($j=0; $j < 500; $j++){
$pdf->Cell(10, 10,'Hello World! '.$j);
}
}
$pdf->endOutput();
All versions of fpdf-stream with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.0
The package ponyfleisch/fpdf-stream contains the following files
Loading the files please wait ....