Nathan Taylor

Results 12 comments of Nathan Taylor

Looking at the Brother ESC/P docs, these are the options for the international character set ``` n3=00h: U.S.A. (*Manufacturer’s default) n3=01h: France n3=02h: Germany n3=03h: U.K. n3=04h: Denmark I n3=05h:...

@projct1 , I have added a pull request #221 that adds this feature 👍

Hi @IvanPagan, When using templates. You add the object you want to manipulate in your template and give it a unique `Object Name` in the P-touch Editor software. Then you...

I've been playing around with a very basic barcode command. ```php $printer->addCommand(new Command\Text("Model Name")); $printer->addCommand(new Command\LineFeed()); $printer->addCommand(new Command\Barcode('12345')); ``` Which produces this when printed, ![PXL_20210903_001003763](https://user-images.githubusercontent.com/28693782/131931543-8616445b-365d-4f5a-82e2-fe84284edb52.jpg) I've only tested code39 barcodes...

@ubay25 I have made a [barcode-test](https://github.com/ntaylor-86/RamyTalal-Label-Printer/commit/245c72757c3b671dbdfeac9c018fd9735821fbc3) branch on my fork on this package, with the Barcode command added.

👀 ![qr_code](https://user-images.githubusercontent.com/28693782/132464091-8e4deb27-2a5f-44e1-96a8-229c010d3597.png) ```php $printer->addCommand(new Command\Text("Hello World!")); $printer->addCommand(new Command\LineFeed()); $printer->addCommand(new Command\QrCode('RamyTalal')); ```

@ubay25, commit added: [QrCode command added](https://github.com/ntaylor-86/RamyTalal-Label-Printer/commit/6e1c887e0546b954595b8847d43977f6e1b19dd2) I'm struggling with changing the size of the QR Code printed?

@atrialabir Setup your template (HTML & CSS) so that it creates a template to suit your labels dimensions.

> Also i might sound stupid but how can I use templates is there somewhere I need to save them to ? To transfer templates from your computer to the...

> is there anyway to change the orientation of the print so its landscapes and we can add lines Could you use the `Rotate` command? https://github.com/RamyTalal/Label-Printer/blob/master/src/Command/Rotate.php