xiidea / php-esc-pos
EPSON ESC/POS printer command generator library
Installs: 3 084
Dependents: 0
Suggesters: 0
Security: 0
Stars: 16
Watchers: 6
Forks: 14
Open Issues: 0
Requires
- php: >=5.3.0
- hyperthese/php-serial: dev-master
- intervention/image: dev-master
Requires (Dev)
- phpunit/phpunit: ~4.4
Suggests
- endroid/qrcode: Require when you want to print QRCode
- hyperthese/php-serial: Allows Communicate with devices connected over Serial port
- intervention/image: Require when you want to print image
This package is auto-updated.
Last update: 2021-07-15 06:39:51 UTC
README
Note: This library is no longer being maintained. I'm not responding to issues or pull requests, since I don't use this project anymore and don't have time to work on it. Please feel free to fork it if you want to continue development on it. Or you can use this library instead.
This library implements a subset of Epson's ESC/POS protocol for thermal receipt printers. It allows you to print receipts with basic formatting, cutting, and barcode printing on a compatible printer.
It is intended for Epson TM-T70 model, But other printers, produced by Epson or other vendors use the same standard, may also work.
Basic usage
<?php //$device = new \Epson\Devices\NetworkPrinter('10.x.x.x'); $device = \Epson\Devices\Serial::create('/dev/tty0'); $printer = new \Epson\Printer($device); $printer -> text("Hello World!\n"); $printer -> cut();
Attribution
This library is a modified version of escpos-php, a Library to work with ESC/POS thermal printers, implemented by Michael Billington. Further documentation is available at https://github.com/mike42/escpos-php.
Unit testing
After the composer install in the same folder:
./vendor/bin/phpunit