Download the PHP package sarabitcom/fpdf-barcode without Composer
On this page you can find all versions of the php package sarabitcom/fpdf-barcode. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download sarabitcom/fpdf-barcode
More information about sarabitcom/fpdf-barcode
Files in sarabitcom/fpdf-barcode
Download sarabitcom/fpdf-barcode
More information about sarabitcom/fpdf-barcode
Files in sarabitcom/fpdf-barcode
Vendor sarabitcom
Package fpdf-barcode
Short Description library to generate pdf document with barcode support
License MIT
Package fpdf-barcode
Short Description library to generate pdf document with barcode support
License MIT
Please rate this library. Is it a good library?
Informations about the package fpdf-barcode
fpdf-barcode
library to generate pdf document with bar-code support
Create Object
$pdf = new \Sarabitcom\Fpdf\FpdfCode39('P', 'mm', 'A4');
Set Margins
$pdf->SetLeftMargin(68); $pdf->SetRightMargin(1); $pdf->SetTopMargin(90);
Add Page
$pdf->AddPage();
Set Headers (Optional)
$pdf->SetAuthor('You Name'); $pdf->SetCreator('Sarabit PDF Barcode'); $pdf->SetTitle('Document Title'); $pdf->SetSubject('Document Subject');
Add Barcode
$pdf->Code39(138, 160, "1234567890", 1, 10);
Set Image
$imagePath = "/home/user/yourimage.jpeg"; // Absolute Path $pdf->Image($imagePath, 0, 0, 210, 297);
Set Font
// Normal $pdf->SetFont('Times', '', 12); // Bold $pdf->SetFont('Times', 'B', 11); // Italic $pdf->SetFont('Times', 'I', 11);
Make Cell
$pdf->Text(68, 164, "Your Text Here");
Output
$pdf->Output('file.pdf', 'I');
All versions of fpdf-barcode with dependencies
PHP Build Version
Package Version
No informations.
The package sarabitcom/fpdf-barcode contains the following files
Loading the files please wait ....