20 lines
571 B
PHP
20 lines
571 B
PHP
<?php
|
|
/* Example of Greek text on the P-822D */
|
|
require __DIR__ . '/../../autoload.php';
|
|
use Mike42\Escpos\CapabilityProfile;
|
|
use Mike42\Escpos\Printer;
|
|
use Mike42\Escpos\PrintConnectors\FilePrintConnector;
|
|
|
|
// Setup the printer
|
|
$connector = new FilePrintConnector("php://stdout");
|
|
$profile = CapabilityProfile::load("P822D");
|
|
$printer = new Printer($connector, $profile);
|
|
|
|
// Print a Greek pangram
|
|
$text = "Ξεσκεπάζω την ψυχοφθόρα βδελυγμία";
|
|
$printer -> text($text . "\n");
|
|
$printer -> cut();
|
|
|
|
// Close the connection
|
|
$printer -> close();
|