reginaldoazevedojr / zebra
PHP ZPL builder and a basic client for network-connected Zebra label printers.
Installs: 4 578
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 54
pkg:composer/reginaldoazevedojr/zebra
Requires
- php: >=5.6.0
- ext-gd: *
This package is not auto-updated.
Last update: 2025-10-30 00:30:46 UTC
README
PHP ZPL builder and a basic client for network-connected Zebra label printers.
Requires: PHP 5.6 with the GD module.
- Create ZPL code in PHP that is clean and easy to read.
- Convert images to ASCII hex bitmaps (JPEG, PNG, GIF, WBMP, and GD2 supported).
- Simple wrapper for PHP sockets to send ZPL to the printer via raw TCP/IP (port 9100).
Example
The following example will print a label with an image positioned 50 dots from the top left.
use Zebra\Client; use Zebra\Zpl\Image; use Zebra\Zpl\Builder; $zpl = new Builder(); $zpl->fo(50, 50); $image = new Image(file_get_contents('example.png')); $zpl->gf($image); $client = new Client('10.0.0.50'); $client->send($zpl);
The same example using static constructors and method chaining:
$image = new Image(file_get_contents('example.png')); $zpl = Zpl::start()->fo(50, 50)->gf($image); Client::printer('10.0.0.50')->send($zpl);
Installation with Composer
$ composer require 'reginaldoazevedojr/zebra:dev-master'
$ composer update