ESC-POS-USB-NET 1.1.3

dotnet add package ESC-POS-USB-NET --version 1.1.3
NuGet\Install-Package ESC-POS-USB-NET -Version 1.1.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ESC-POS-USB-NET" Version="1.1.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ESC-POS-USB-NET --version 1.1.3
#r "nuget: ESC-POS-USB-NET, 1.1.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ESC-POS-USB-NET as a Cake Addin
#addin nuget:?package=ESC-POS-USB-NET&version=1.1.3

// Install ESC-POS-USB-NET as a Cake Tool
#tool nuget:?package=ESC-POS-USB-NET&version=1.1.3

ESC-POS-USB-NET is a free and open source .NET (C#) Implementation of the Epson ESC/POS Printing using USB Device Driver.

  • Focus on your business logic. With ESC-POS-USB-NET, you should focus on your business logic. we do the printing logic.
  • Customizable. You can quickly build your logic by fully customizing the code to fit your needs perfectly.

"Buy Me A Coffee"


Getting Started

follow the steps below:

⏳ Installation

Use this Quickstart command to install in your project :

  • (Use nuget package manager to install (recommended))
Install-Package ESC-POS-USB-NET

or

  • (Use .Net Cli to install)
dotnet add package ESC-POS-USB-NET

This command install ESC-POS-USB-NET with your project.

Enjoy 🎉

❤️ Example Using C#

Import ESC_POS_USB_NET Printer Class:

using ESC_POS_USB_NET.Printer;

You can find printer name from (Windows): Control Panel->Hardware and Sound->Devices and Printers-> Your Printer's Name

Test Print:

Printer printer = new Printer("Printer Name");
printer.TestPrinter();
printer.FullPaperCut();
printer.PrintDocument();

Print Image:

Printer printer = new Printer("Printer Name");
Bitmap image =new Bitmap ( Bitmap.FromFile("Icon.bmp"));
printer.Image(image);
printer.FullPaperCut();
printer.PrintDocument();

Print Barcodes:

Printer printer = new Printer("Printer Name");
printer.Append("Code 128");
printer.Code128("123456789");
printer.Separator();
printer.Append("Code39");
printer.Code39("123456789");
printer.Separator();
printer.Append("Ean13");
printer.Ean13("1234567891231");
printer.FullPaperCut();
printer.PrintDocument();

Open Drawer:

Printer printer = new Printer("Printer Name");
printer.OpenDrawer();
printer.PrintDocument();

Different Types of Separators:

Printer printer = new Printer(txtPrinterName.Text);
printer.Separator(); // Deafult
printer.Separator('.'); // .
printer.Separator('|'); // |
printer.Separator('='); // =
printer.Separator('+'); // +
printer.Separator('*'); // *
printer.Separator('^'); // ^
printer.Separator('~'); // ~
printer.Separator(':'); // :
printer.Separator('#'); // #
printer.FullPaperCut();
printer.PrintDocument();

Typography Test:

Printer printer = new Printer("Printer Name");
printer.Append("NORMAL - 48 COLUMNS");
printer.Append("1...5...10...15...20...25...30...35...40...45.48");
printer.Separator();
printer.Append("Text Normal");
printer.BoldMode("Bold Text");
printer.UnderlineMode("Underlined text");
printer.Separator();
printer.ExpandedMode(PrinterModeState.On);
printer.Append("Expanded - 23 COLUMNS");
printer.Append("1...5...10...15...20..23");
printer.ExpandedMode(PrinterModeState.Off);
printer.Separator();
printer.CondensedMode(PrinterModeState.On);
printer.Append("Condensed - 64 COLUMNS");
printer.Append("1...5...10...15...20...25...30...35...40...45...50...55...60..64");
printer.CondensedMode(PrinterModeState.Off);
printer.Separator();
printer.DoubleWidth2();
printer.Append("Font Width 2");
printer.DoubleWidth3();
printer.Append("Font Width 3");
printer.NormalWidth();
printer.Append("Normal width");
printer.Separator();
printer.AlignRight();
printer.Append("Right aligned text");
printer.AlignCenter();
printer.Append("Center-aligned text");
printer.AlignLeft();
printer.Append("Left aligned text");
printer.Separator();
printer.Font("Font A", Fonts.FontA);
printer.Font("Font B", Fonts.FontB);
printer.Font("Font C", Fonts.FontC);
printer.Font("Font D", Fonts.FontD);
printer.Font("Font E", Fonts.FontE);
printer.Font("Font Special A", Fonts.SpecialFontA);
printer.Font("Font Special B", Fonts.SpecialFontB);
printer.Separator();
printer.InitializePrint();
printer.SetLineHeight(24);
printer.Append("This is first line with line height of 30 dots");
printer.SetLineHeight(40);
printer.Append("This is second line with line height of 24 dots");
printer.Append("This is third line with line height of 40 dots");
printer.NewLines(3);
printer.Append("End of Test :)");
printer.Separator();
printer.FullPaperCut();
printer.PrintDocument();

🎈 Features

  • Alignment: Left, Right and Center alignment.
  • BarCode: Code128, Code39, Ean13 barcodes are supported.
  • Drawer: Drawer Open facility.
  • Font Mode: Supported Bold, Underline, Expanded, Condensed modes.
  • Change Font: Change font to device specified FontA, FontB, FontC, FontD, FontE, SpecialFontA and SpecialFontB.
  • Font Width: Supported Normal, DoubleWidth2 and DoubleWidth3.
  • Image: Print BMP Image.
  • Paper Cut: Cut paper with Full & Partial Cut.
  • QrCode: Support 2D barcode (QrCode).

🖐 Requirements

Supported operating systems:

  • Ubuntu 18.04
  • Mac O/S
  • Windows 10

(Please note that ESC-POS-USB-NET may work on other operating systems, but these are not tested nor officially supported at this time.)

Dependencies:

  • .NETStandard 2.0
  • System.Drawing.Common (>= 4.6.0)

We recommend always using the latest version of ESC-POS-USB-NET to start your new projects.

This project is currently in Under Development. Significant breaking changes are unlikely at this stage of the project, but using the latest version ensures you have all the latest features and updates. New releases are usually shipped every two weeks to fix/enhance the project.

🧑‍🤝‍🧑 Contributing

We welcome open an issue if you have any trouble.

📝 License

MIT License Copyright (c) 2019 MTM Suhail.


❤️ Support

"Buy Me A Coffee"

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on ESC-POS-USB-NET:

Package Downloads
RCorreia.RosferanBi.Services

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.3 25,710 1/17/2020
1.1.2 2,597 11/15/2019
1.1.1 512 11/15/2019
1.1.0 516 11/12/2019
1.0.9 462 11/11/2019
1.0.8 466 11/10/2019
1.0.7 519 11/10/2019
1.0.6 482 11/10/2019
1.0.5 500 11/10/2019
1.0.4 485 11/10/2019
1.0.3 484 11/10/2019
1.0.2 517 11/10/2019
1.0.1 531 11/10/2019
1.0.0 632 11/10/2019