Results 8 issues of Igor

@NewbridgeGareth I'm not aware of any ESCPOS parser that can output PDF or any other format. I've been interested in building something like this (to provide print previews, etc.) Can...

Dependent on #29 Once the new Barcode and QRCode methods are created, we can create methods that will extend a string (the barcode data) like this ```cs public static byte[]...

good first issue
hacktoberfest-accepted

Simple ESC/POS [Commands](https://github.com/igorocampos/ESCPOS/blob/3b43cf7d808e9e790bdd2a0280f9952f5fe0bea5/ESCPOS/Commands.cs#L11) are actually just static properties of Commands class. And they are easy on the eye when used. On the other hand, full commands require parameters, which is...

good first issue
hacktoberfest-accepted

`PrintBarCode` and `PrintQRCode` should be renamed as they don't actually print anything, but rather create the necessary command for a barcode/qrcode. New name should be just `Barcode` and `QRCode` As...

good first issue
hacktoberfest-accepted

Addresses suggestions of #210 and #147 A new property that holds the column count so it's easier to write horizontal line and align texts to both left and right on...

Fixes #253 Based on below manuals, length cap was wrong for PDF417 and Code128 ![image](https://github.com/lukevp/ESC-POS-.NET/assets/10572656/f5d5cb8b-e288-4b36-8647-04b115355225) ![image](https://github.com/lukevp/ESC-POS-.NET/assets/10572656/4b117a64-bc3c-4ae0-9810-2abb4d6a948d)

Created a couple of global tests for the Print method.

Hi @lukevp, I was doing some additional unit tests and ran by this little thing here. I believe we want to be more specific on the exception when Print receives...