Java library for ESC/POS compatible thermal printers, serial or network connected. You can print :
- Text
- Barcodes
- QRCodes
- Images
It is largely based on work from harf18 (https://github.com/harf18/escpospi)
// 192.168.0.100 is the IP of the network connected thermal printer
// 9100 is the port of the thermal printer
Printer printer = new NetworkPrinter("192.168.0.100", 9100);
PrinterService printerService = new PrinterService(printer);
printerService.print("Test text");
printerService.cutFull()
printerService.close();
To build the project, just use:
mvn clean package
It will generate a fat-jar in the target directory.
This project is licensed under the terms of the MIT license.