mazinsw/escpos

ESC/POS Printer Library

1.2.1 2023-08-21 21:23 UTC

This package is auto-updated.

Last update: 2024-04-21 22:59:19 UTC


README

Library to generate buffer for thermal printers

Latest Version on Packagist Coverage Status Quality Score Total Downloads

Install

You need Composer to install this library.

Run command bellow on your project folder

composer require mazinsw/escpos

Basic example

<?php
use Thermal\Printer;
use Thermal\Connection\Buffer;
use Thermal\Model;

$model = new Model('MP-4200 TH');
$connection = new Buffer();
$printer = new Printer($model, $connection);
$printer->setColumns(56);
$printer->write('Simple Text *** ');
$printer->writeln('Bold Text', Printer::STYLE_BOLD);
$printer->writeln('Double height', Printer::STYLE_DOUBLE_HEIGHT | Printer::STYLE_BOLD, Printer::ALIGN_CENTER);
$printer->qrcode('qrcode text');
$printer->feed(2);
$printer->buzzer();
$printer->cutter();
$printer->drawer(Printer::DRAWER_1);
echo $connection->getBuffer();
// redirect the output to your printer
// php example.php > COM1

Dependencies

  • PHP 8.1 or above
  • Mbstring extension

License

Please see license file for more information.