Deprecated

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.

Due to usage of .NET Framework and Windows specific API's, this project is considered deprecated

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();