rocketman / pdf-label
This class is a modified version of PDF_Label that adds support for unicode and ttf.
Installs: 4 935
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- setasign/tfpdf: ^1.32
This package is auto-updated.
Last update: 2024-10-10 19:48:24 UTC
README
This class is a modified version of PDF_Label
that adds support for
unicode and ttf.
Documentation and source for the upstream class can be found here: http://www.fpdf.org/en/script/script29.php
Installation with Composer
If you are using composer to manage dependencies, you can use
$ composer require rocketman/pdf-label:1.6+rocketman.2
or you can include the following in your composer.json
file:
{ "require": { "rocketman/pdf-label": "^1.6+rocketman.2" } }
Usage
$label = "5160"; // pre-defined label name or form-spec array $pdf = new \PDF_Label($label); $pdf->AddFont(...); // see tFPDF documentation for AddFont and SetFont $pdf->SetFont(...); $pdf->AddPage(); $pdf->Add_Label("label content here"); $pdf->Add_Label("second label"); $pdf->currentLabel("more content for current label"); $pdf->verticalText("vertical text for current label", -1, 0, 'D'); $pdf->writeQRCode("https://www.ibinx.com/", "R"); $pdf->Output();