Skip to content

mumpo/fpdf-barcode

 
 

Repository files navigation

##laravel-Fpdf-barcode

Fork of https://github.com/anouarabdsslm/laravel-fpdf, with barcode and QR generation capabilities.

###Usage

$fpdf = new FpdfBarcode();
$fpdf->AddPage();

// Code 128 horizontal
// $x, $y, $code, $width, $height, $vertical
$fpdf->code128(15, 15, 'HORIZONTAL CODE', 85, 10, false);

// Code 128 vertical
// $x, $y, $code, $width, $height, $vertical
$fpdf->code128(150, 15, 'VERTICAL CODE', 85, 10, true);

// QR
// $code, $x, $y, $size
$fpdf->QR('QR CODE', 15, 50, 20);

$fpdf->Output();

About

Fpdf allows to generate PDF files

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%