Raw Printer tools for C#

C# Raw Printing helper for dot matrix and thermal printers.

Setup

Download RawPrinter.dll library from GitHub Releases and add it to a project as a dependency.

RawPrinter.dll

Usage

var printer = new RawPrinter.Printer("Printer Name");if (!printer.Open("Job Name")) return;printer.SendData("This text is sent to a line printer\r\n");printer.SendData("===================================\r\n");printer.Close();
Table of Contents