Recommend this page to a friend! |
Download |
Info | Example | Screenshots | Files | Install with Composer | Download | Reputation | Support forum | Blog | Links |
Ratings | Unique User Downloads | Download Rankings | ||||
78% | Total: 345 | All time: 7,039 This week: 16 |
Version | License | PHP version | Categories | |||
printable_labels_pdf 1.0.1 | Custom (specified... | 5 | HTML, PHP 5, Files and Folders, Printing, B... |
Description | Author | |||
This package can generate PDF documents with labels from HTML tags. Innovation Award
|
<?php |
Generate pdf file with printable labels with PHP code.
## CREATE A PDF FILE WITH LABELS EASELY: You can get a pdf file with labels for print. It can set easely with any type of labels widths ang heights, papers, etc... You can draw a single border if you need it. You can get the pdf file generated into a browser, download, get a string of the pdf or save it to the server. 100% written in PHP (pure PHP). Mpdf library required.
Test with VirtualBox Ubuntu Server 20.04.2 LTS (Focal Fossa) with PHP7.4.3 in 18 seconds.
Content of the pdf created.
https://github.com/vivesweb/printable_labels_pdf/blob/main/pritable_labels_pdf.pdf
# REQUERIMENTS:
- A minimum (minimum, minimum, minimum requeriments is needed). Tested on:
- Simple Raspberry pi (B + 512MB 700 MHz ARM11) with Raspbian Lite PHP7.3 (i love this gadgets) :heart_eyes:
- VirtualBox Ubuntu Server 20.04.2 LTS (Focal Fossa) with PHP7.4.3
- Red Hat Enterprise Linux Server release 6.10 (Santiago) PHP Version 7.3.25 (Production Server) 512Mb Memory Limit
- Red Hat Enterprise Linux release 8.4 (Ootpa). PHP Version 8.0.11 (Production Server) 512Mb Memory Limit
Ensure to add correct path at line 106 in the file _printable_labels_pdf_class.php_:
require_once __DIR__ . '/mpdf/vendor/autoload.php';
printable_labels_pdf_class.php -> Main File.
example.php -> Example File.
pritable_labels_pdf.pdf -> Example pdf with labels File created.
test_pdf_labels.png -> Screenshot of a pdf file created.
test_pdf_labels_2.png -> Screenshot of the content data inside the pdf (with benchmark).
# INSTALLATION: A lot of easy :smiley:. It is written in PURE PHP. Only need to include the files. Tested on basic PHP installation
require_once( 'printable_labels_pdf_class.php' );
If you change the mpdf dir installation, make sure mpdf library is included in printable_labels_pdf_class.php at line 106 in printable_labels_pdf_class.php:
require_once __DIR__ . '/mpdf/vendor/autoload.php';
$printable_labels_pdf = new printable_labels_pdf( $labels_config );
Example:
$printable_labels_pdf = new printable_labels_pdf( $labels_config );
ALL MEASURES ARE IN CM.
_page_format_: Measures of the page ('A4', for example). You can to give a values or a string format. See https://mpdf.github.io/ documentation.
// array: [210,297].
// string format: 'A0? - 'A10', 'B0' - 'B10', 'C0' - 'C10', '4A0', '2A0', 'RA0' - 'RA4', 'SRA0' - 'SRA4', 'Letter', 'Legal', 'Executive', 'Folio', 'Demy', 'Royal', 'A' (Type A paperback 111x178mm), 'B' (Type B paperback 128x198mm).
_start_at_label_: To recycle paper, if you have printed some labels and remain labels in blank for print, you can use another time the paper, begin at label num. that you specify here. If not set, 1 that means at first label. :recycle: :smiley:
The distribution of number labels:
--------------------- | label 1 | label 2 | --------------------- | label 3 | label 4 | --------------------- | label 5 | label 6 | --------------------- | label 7 | label 8 | --------------------- | label 9 | label 10| ---------------------
Ex. Maybe you have a page printed labels from 1 to 5, and then have the rest labels in blank, without print. You can recycle the labels paper and use it another time!!!! If you want to print the first label beginning at position 6 (that is 3 row second col), then set $begin_at_label_num to 6 For our example, the pdf will be created as it: --------------------- | skipped | skipped | --------------------- | skipped | skipped | --------------------- | skipped | label 6 | --------------------- | label 7 | label 8 | --------------------- | label 9 | label 10| ---------------------
IMPORTANT!!!! if you skip first row, the id's keep its natural order:
--------------------- | skipped | skipped | --------------------- | label 3 | label 4 | --------------------- | label 5 | label 6 | --------------------- | label 7 | label 8 | --------------------- | label 9 | label 10| ---------------------
Then, if whe skip first row and set $begin_at_label_num with 1, 2 or 3, will have the same result because in all the cases it will begin at label 3
$printable_labels_pdf->draw_border( true );
Draw a border around the labels
Example:
$printable_labels_pdf->draw_border( true );
$printable_labels_pdf->write_label( $label_html ); Send a content html for draw new label
Example:
// Make a string of the html label
$label_html = '<b>label bold</b><br />'; // 1st row. Bold
$label_html .= '<i>Line 2 italic</i><br />'; // 2nd row. Italic
$label_html .= '<u>Line 3 underline</u><br />'; // 3th row. Underline
$label_html .= 'Line 4 normal'; // 4th row. Standard text
// send the html string to a new label
$printable_labels_pdf->write_label( $label_html );
$printable_labels_pdf->get_labels_pdf( $file_name, $output); return the pdf in the browser in the output format
Examples:
$printable_labels_pdf->get_labels_pdf( $file_name, $output);
a) Show directly in the browser (default)
$printable_labels_pdf->get_labels_pdf('test.pdf', 'I'); // Output a PDF file directly to the browser
b) Get a String of the pdf to do something with it later:
$SomeVarPdfString = $printable_labels_pdf->get_labels_pdf('test.pdf', 'S'); // Get pdf in string format and assign to $SomeVarPdfString
c) Download
$printable_labels_pdf->get_labels_pdf('test.pdf', 'D'); // Download pdf
d) Save pdf file in server path
$printable_labels_pdf->get_labels_pdf('/some_dir/test.pdf', 'F'); // Save pdf in some dir of the server. Ensure that you have writable perms to the folder
BENCHMARK:
You have included a Benchmark in the internal data of pdf properties (see creator application data) :smiley:
Configuration TEST in Virtual Ubuntu Linux: - Num labels: 2.499 - 4 lines each label - Line 1: Bold - Line 2: italic - Line 3: underline - Line 4: normal - Format Page: A4 - Distribution of labels 2 cols x 12 rows - Skip first row: true - Skip last row: true - Print Border: true - Begin at label 4 - Label Width: 8.89 - Label height: 2.33 - margin_left_page: 1.3 - margin_top_page: .2 - margin_left_label: .2 - margin_bottom_label: .2 - padding_left_label: .25 - padding_top_label: .25
RESULT: - 125 pages created in 18 seconds
In a simple Raspberry PI b 2 i get with the same config, with 999 labels, done in 2 minutes and 28 seconds :sweat_smile:
SOME NOTES:
I find some bugs floating divs and margins in mpdf. Only works with margin-left and margin-bottom label, but don't worry, there is no problem. All works ok :smile:.
Of course. You can use it freely :vulcan_salute::alien:
By Rafa.
@author Rafael Martin Soto
@author {@link http://www.inatica.com/ Inatica}
@blog {@link https://rafamartin10.blogspot.com/ Rafael Martin's Blog}
@since August 2021
@version 1.0.0
@license GNU General Public License v3.0
Screenshots (1) | ||
Files (8) |
File | Role | Description |
---|---|---|
example.php | Example | Example script |
LICENSE | Lic. | License text |
printable_labels_pdf_class.php | Class | Class source |
pritable_labels_pdf.pdf | Data | Auxiliary data |
README.md | Doc. | Documentation |
test_pdf_labels.png | Data | Auxiliary data |
test_pdf_labels_2.png | Data | Auxiliary data |
The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page. |
Install with Composer |
printable_labels_pdf-2021-10-07.zip 311KB | |
printable_labels_pdf-2021-10-07.tar.gz 313KB | |
Install with Composer |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
87% |
|
|
User Ratings | User Comments (3) | ||||||||||||||||||||||||||||||||||||||||
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.
Related pages |
Author blog inform of Launch PHP Print Labels to PDF |