Skip to content

Latest commit

 

History

History
38 lines (21 loc) · 1.01 KB

README.md

File metadata and controls

38 lines (21 loc) · 1.01 KB

RawPrint

Forked from a 2015 version of rawprint from Frogmore Computer Services.

Code modified to print to the default printer if no printer is named.

Use ILmerge to combine the DLL and exe into a single static-linked executable.

========

.Net library to send files directly to a Windows printer bypassing the printer driver.

Send PostScript, PCL or other print file types directly to a printer.

Requires .Net 4 runtime on Windows XP to 10 and Server 2003 to 2012.

Usage:

using RawPrint;

Printer.PrintFile("Printer Name", @"C:\Path\To\Print\File.prn", "Document Name");

Installation:

To install Raw Print, run the following command in the Package Manager Console

PM> Install-Package RawPrint

2016-02-21

Static methods are now obsolete. Introduced IPrinter interface to make mocking easier. Support for spooling a paused print job

2015-10-20

Fixed an issue with some HP drivers that misname their pipelineconfig.xml file.