Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It's the "printing question guy" again. Looking for a third-party solution to print PDFs, preferable from a service. I have seen some arguments against it, but due to our use case, this really is the preferred solution - the service will be receiving messages from a messaging bus, and there shouldn't be any sort of delay between the receipt of that message and the printing of the report. So far, I've found 1 solution from PDF Tools that seems very nice, and very flexible. The problem is that it's licensed per server. If anyone knows of any third-party solutions that have a seat license (per developer, unlimited runtime distribution), that would be much preferred.

EDIT: Clarification, by printing, I mean sending the PDF to a printer.


EDIT: 3 years later, I am no longer working on this problem, but going back through the answers, it doesn't seem that there is a working solution. If you see an answer below that is a valid solution to printing a PDF from a .NET service, please leave a comment so that I can accept it.

share|improve this question
Last year, I wrote an article titled "A PDF Printer Demo For PDFOne .NET" for my company Gnostice. PDFOne .NET has a component named PDFPrinter that you can use with the System.Drawing.Printing.PrinterSettings library. The component also provides some PDF-specific features such as autocenter, autorotate, reverse printing and several others. And, PDFOne does not require Adobe Reader/SDK or Ghostscript on the client system. – VSU Jan 6 '11 at 5:36

20 Answers

I have used the free (AFPL and GPL) Ghostscript to print Postscript and PDF from un*x. You can pipe the pdf data to a command line version and then print using lp, where you'd specify the printer name on the server.

On windows it is very similar;

set PATH=%PATH%;C:\Program Files\gs\gs8.51\bin
gswin32c -sDEVICE=mswinpr2 -sPAPERSIZE=a4 -sOutputFile="\\spool\PERTH" -dNOPAUSE -dNoCancel -dBATCH testpdf2.pdf -c quit

Replace PERTH with your windows printer name, and testpdf2.pdf with your pdf file. Also note that in version 8.51 i tried piping the data to gswin32c, but it crashed regularly with postscript files, so i stick with writing a file, then reading a file. This may be fixed in more recent releases.

To implement this on ASP.net you could set up some sort of on demand calling of this (not recommended as it is slowish) or a batch polling job, or even a service.

NB: You had another question on printing HTML. If you could convert your HTML to PS or PDF then you job could be completed with Ghostscript. I have used HTMLDOC to do something similar.

NB: The GPL version should allow commercial distribution of the Ghostscript application as long as you distribute the source code. It's a different matter if you copy parts of the source code and use it. Please read the GPL license though and check for yourself.

share|improve this answer

I'm not sure if this is quite what you want, but the way I've done similar before is to use foxit reader as a commandline app with the /p parameter to print - e.g.

'C:\Program Files\Foxit Software\Foxit Reader\Foxit Reader.exe' /p C:\path\to\file.pdf

share|improve this answer
This looks like it could be workable - they also have an SDK available with custom licensing – Chris Marasti-Georg Oct 12 '09 at 12:33
Is it possible to specify the number copies to print as an argument too? – Lamps Sep 12 '11 at 7:28

PDFRasterizer from Tall Components does exactly what you need: it rasterizes (ie converts into printable form) individual pages from a PDF. It's very easy to build on that to create a print job for a whole document.

It's a fully-.NET product, and works well in server environments. It's very well made. (I have no affiliation with them, I'm just a satisfied customer).

The only downside is that it is quite expensive. But as you've probably noticed, there just aren't a lot of products that can reliably print PDFs from inside a server.

share|improve this answer
Paul, do you know if it's possible to print to the client's default printer using PDFRasterizer? We're testing it and it appears to be going to the Server's printer, and not the client's. Any experience with this? – PushCode Mar 30 '11 at 13:57
@PushCode, PDFRasterizer doesn't know anything about printers per se, it just renders a page to a System.Drawing.Graphics object. You have to set up the Graphics object so it outputs to a printer. Typically, the printer has to be defined on the machine where the graphics object is created. So in your case, the client's printer would have to be defined server-side. – Paul Lalonde Apr 1 '11 at 1:14
So does this mean that you will end up with a hugh spool file as the whole pdf page is rendered as an image? – Scoregraphic Dec 28 '11 at 6:58

I've just used iTextSharp on a project at work and it proved to be very easy to use, and it's completely free. I got it working in about 30 minutes from download to first test. Printing a block of text without formatting only took the code below to work. This was for a user clicking a link and getting the service agreement text, which was dynamically generated, and then sending it to the user to download.

The website has examples on doing more complicated formatting, as well, and it all looked fairly rational. I'd give it a try, at least, to see if it does what you need.

// Create the iText PDF document and the memory stream we'll send to the user
Document pdfDoc = new Document();
MemoryStream stream = new MemoryStream();
PdfWriter.GetInstance(pdfDoc, stream);
//Open the PDF document and add the AgreementBox text to it
pdfDoc.Open();
pdfDoc.Add(new Paragraph(GetAgreement()));
pdfDoc.Close();
// Send the memory stream to the user as an attachment.
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "attachment;filename=agreement.pdf");
Response.OutputStream.Write(stream.GetBuffer(), 0, stream.GetBuffer().Length);
Response.OutputStream.Flush();
Response.OutputStream.Close();

Eric Sipple

share|improve this answer
6  
ITextSharp does not seem to have any Printer functionality that I can find – Chris Marasti-Georg Oct 12 '09 at 12:32
Good point, but downvote because it doesn't solve the problem. Upvoting the gsview answer that does solve the problem. – sfuqua Oct 17 '11 at 13:53
1  
If the hosting server is aware of a printer, iTextSharp is all you need to get the data from the PDF and spool the stream to the printer driver. – one.beat.consumer Jan 31 '12 at 2:29
@one.beat.consumer Do you have a link or sample? I cannot find any info on printing using iTextSharp. – Brian Low Feb 24 '12 at 17:01
You don't use iTextSharp to print, just .Net... you've already read or written the document to a stream, no? – one.beat.consumer Feb 24 '12 at 18:22

How about PDF Rasterizer.NET from Tall components? I've used Tall's other PDF components before and they were pretty good. I don't have any experience of Rasterizer, but the samples seem to indicate that it's an expected use-case.

In terms of licensing, it's on the expensive side but you can have a "Server" licence or a "Client Application" license.

share|improve this answer
1  
I want to add support to this answer. This component can output an EMF or XPS file, which you can then print using the Windows printing pipeline. – wasabi Apr 18 '12 at 17:45

i use pdftops.exe from here:

http://www.foolabs.com/xpdf/download.html

i convert the pdf file to postscript by kicking off and wating for it to process

I then read in the entire ps file into a string and print it using a RawPrinter:

Imports System.Runtime.InteropServices

Public Class RawPrinter Private _printerFound As Boolean Private _printerPrinted As Boolean Private _docName As String

' ----- Define the data type that supplies basic
'       print job information to the spooler.
<StructLayout(LayoutKind.Sequential, _
    CharSet:=CharSet.Unicode)> _
Public Structure DOCINFO
    <MarshalAs(UnmanagedType.LPWStr)> _
       Public pDocName As String
    <MarshalAs(UnmanagedType.LPWStr)> _
       Public pOutputFile As String
    <MarshalAs(UnmanagedType.LPWStr)> _
       Public pDataType As String
End Structure

' ----- Define interfaces to the functions supplied
'       in the DLL.
<DllImport("winspool.drv", EntryPoint:="OpenPrinterW", _
   SetLastError:=True, CharSet:=CharSet.Unicode, _
   ExactSpelling:=True, _
   CallingConvention:=CallingConvention.StdCall)> _
Public Shared Function OpenPrinter( _
   ByVal printerName As String, ByRef hPrinter As IntPtr, _
   ByVal printerDefaults As Integer) As Boolean
End Function

<DllImport("winspool.drv", EntryPoint:="ClosePrinter", _
   SetLastError:=True, CharSet:=CharSet.Unicode, _
   ExactSpelling:=True, _
   CallingConvention:=CallingConvention.StdCall)> _
Public Shared Function ClosePrinter( _
   ByVal hPrinter As IntPtr) As Boolean
End Function

<DllImport("winspool.drv", EntryPoint:="StartDocPrinterW", _
   SetLastError:=True, CharSet:=CharSet.Unicode, _
   ExactSpelling:=True, _
   CallingConvention:=CallingConvention.StdCall)> _
Public Shared Function StartDocPrinter( _
   ByVal hPrinter As IntPtr, ByVal level As Integer, _
   ByRef documentInfo As DOCINFO) As Boolean
End Function

<DllImport("winspool.drv", EntryPoint:="EndDocPrinter", _
   SetLastError:=True, CharSet:=CharSet.Unicode, _
   ExactSpelling:=True, _
   CallingConvention:=CallingConvention.StdCall)> _
Public Shared Function EndDocPrinter( _
   ByVal hPrinter As IntPtr) As Boolean
End Function

<DllImport("winspool.drv", EntryPoint:="StartPagePrinter", _
   SetLastError:=True, CharSet:=CharSet.Unicode, _
   ExactSpelling:=True, _
   CallingConvention:=CallingConvention.StdCall)> _
Public Shared Function StartPagePrinter( _
   ByVal hPrinter As IntPtr) As Boolean
End Function

<DllImport("winspool.drv", EntryPoint:="EndPagePrinter", _
   SetLastError:=True, CharSet:=CharSet.Unicode, _
   ExactSpelling:=True, _
   CallingConvention:=CallingConvention.StdCall)> _
Public Shared Function EndPagePrinter( _
   ByVal hPrinter As IntPtr) As Boolean
End Function

<DllImport("winspool.drv", EntryPoint:="WritePrinter", _
   SetLastError:=True, CharSet:=CharSet.Unicode, _
   ExactSpelling:=True, _
   CallingConvention:=CallingConvention.StdCall)> _
Public Shared Function WritePrinter( _
   ByVal hPrinter As IntPtr, ByVal buffer As IntPtr, _
   ByVal bufferLength As Integer, _
   ByRef bytesWritten As Integer) As Boolean
End Function

Public Sub New()
    _printerFound = False
    _printerPrinted = False

End Sub

Public Function PrintRaw( _
      ByVal printerName As String, _
      ByVal origString As String) As Boolean
    ' ----- Send a string of raw data to the printer.
    Dim hPrinter As IntPtr
    Dim spoolData As New DOCINFO
    Dim dataToSend As IntPtr
    Dim dataSize As Integer
    Dim bytesWritten As Integer

    ' ----- The internal format of a .NET String is just
    '       different enough from what the printer expects
    '       that there will be a problem if we send it
    '       directly. Convert it to ANSI format before
    '       sending.
    dataSize = origString.Length()
    dataToSend = Marshal.StringToCoTaskMemAnsi(origString)

    ' ----- Prepare information for the spooler.
    spoolData.pDocName = _docName
    spoolData.pDataType = "RAW"

    Try
        ' ----- Open a channel to the printer or spooler.
        Call OpenPrinter(printerName, hPrinter, 0)

        If hPrinter <> 0 Then
            _printerFound = True
            ' ----- Start a new document and page 1.
            Call StartDocPrinter(hPrinter, 1, spoolData)
            Call StartPagePrinter(hPrinter)

            ' ----- Send the data to the printer.
            Call WritePrinter(hPrinter, dataToSend, dataSize, bytesWritten)

            If dataSize = bytesWritten Then
                _printerPrinted = True
            End If
            ' ----- Close everything that we opened.
            EndPagePrinter(hPrinter)
            EndDocPrinter(hPrinter)
            ClosePrinter(hPrinter)
        End If

    Catch ex As Exception
        'MsgBox("Error occurred: " & ex.ToString)
    Finally
        ' ----- Get rid of the special ANSI version.
        Marshal.FreeCoTaskMem(dataToSend)
    End Try
End Function

Public Property PrinterFound() As Boolean
    Get
        Return _printerFound
    End Get
    Set(ByVal value As Boolean)
        _printerFound = value
    End Set
End Property

Public Property PrinterPrinted() As Boolean
    Get
        Return _printerPrinted
    End Get
    Set(ByVal value As Boolean)
        _printerPrinted = value
    End Set
End Property

Public Property DocName() As String
    Get
        Return _docName
    End Get
    Set(ByVal value As String)
        _docName = value
    End Set
End Property

End Class

share|improve this answer

For a free solution you can look into these java libraries and run them either in IKVM or write a small Java wrapper around them. You can, for example create an application that just reads a base64-encoded document from stdin, renders it and writes the result base64-encoded to stdout.

share|improve this answer

I know you were looking for third party solutions. This is more of a response to the answer from @Tori and maybe the comment by @Austin.

It seems that acrobat used to close when it finished printing, but at some point it changed to open a window when done. So I've had some luck with this...

using (var process = new Process())
{
    process.StartInfo.UseShellExecute = false;
    process.StartInfo.FileName = command;
    process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;

    process.Start();

    // adobe opens itself when done printing, so wait and close it.
    process.WaitForInputIdle();
    process.CloseMainWindow();
}

The command var is the command line acrobat print command which I fetch from the registry (due to the way my users frequently have mis-configured acrobat settings):

"C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe" /p /h "c:\file.pdf"

Note: I don't think this works with Reader X but works with earlier versions. With each release they react to attempts to use reader for background pdf printing. I ended up switching to ghostscript.

share|improve this answer

I use and like the DynamicPDF products from ceTe. They are a bit pricey ($999 per server on 6/1/12) but there is a lot of functionality in the product suite. In this case, DynamicPDF PrintManager for .NET:

http://www.dynamicpdf.com/Products/DynamicPDFPrintManagerforNET/

share|improve this answer

ITextSharp used to be a good choice, and it's free (LGPL). It doesn't seem to have been updated for a while, so it might be a PITA to get it working right.

share|improve this answer
5  
ITextSharp does not seem to have any Printer functionality that I can find – Chris Marasti-Georg Oct 12 '09 at 12:32
1  
ITextSharp cannot be used for this purpose, and it is not LGPL, it's AGPL, which means you cannot use it in a commercial closed-source application. – yms Dec 21 '11 at 20:35
1  
It was previously LGPL though, so if you simply find the older version you can use it in an LGPL fashion. nuget.org/packages/iTextSharp-LGPL That said, I prefer pdfSharp nuget.org/packages/PdfSharp It doesn't allow you to print pdf's by itself either though. – Telarian Mar 30 '12 at 18:30

PDFSharp is your friend here. These guys provide a nice set of OS libraries that I have used for PDF jiggery-pokery before.

You'll probably want the PdfSharp.Pdf.Printing.PdfFilePrinter class.

Just load up your pdf and call print()... nice and easy.

share|improve this answer
5  
PDFSharp seems to just call acrobat reader, which does not support silent command line printer invocation. – Chris Marasti-Georg Oct 12 '09 at 12:34

I been using ABC PDF for convert html to PDF, but I think the redistribution license is very expensive ($4790 USD, we use the professional license), it works just fine.

Also I found this article in code project, who implements a windows service, .Net remoting and open office in a service-oriented architecture.

http://www.codeproject.com/KB/files/generatepdf.aspx

share|improve this answer

I started using the free community edition from dynamicpdf.com it works very well and you can upgrade later to get the full feature set if needed.

share|improve this answer

My company sells a PDF rasterizer and an associated set of image manipulation tools. Printing a PDF is straight forward.

share|improve this answer

Tested w/Reader v9.

            string myargs = "/s /o /h /p" + @"c:\something.pdf";

            System.Diagnostics.Process p = new System.Diagnostics.Process();

            p.StartInfo.FileName = "AcroRd32.exe";
            p.StartInfo.Arguments = myargs;
            p.StartInfo.UseShellExecute = true;
            p.Start();
share|improve this answer
process object won't let you printting in slient mode and makes you a lot of problems since you want bulk printing. – austin powers Mar 1 '10 at 18:36

We used PDF Xchange (http://www.docu-track.com/). They have the PDF-XChange Driver's API SDK (about $840), which allows you to interact with the print driver. It also includes their API viewer SDK with which you can print PDF files and bypass Adobe Reader.

share|improve this answer

Amyuni PDF Creator .Net could be used for this scenario. It can be used from within a service, and an application license allows "unlimited runtime distribution" for one target application.

usual disclaimer applies

share|improve this answer

Good pdf printing library is http://pdfprinting.net

usual disclaimer applies

share|improve this answer

check out the report viewer control. It can render as PDF.
http://www.gotreportviewer.com/

Q: Does PDF export require an Adobe license?

A: No. The ReportViewer control does not use any Adobe code to generate PDF files. PDF is an open format, and anyone can create PDF files without requiring a special license. Q: What are the limitations of ReportViewer control?

A: Unlike the Report Server the ReportViewer control does not connect to databases or execute queries. Also, in local mode the only export formats available are Excel and PDF. (In remote mode all formats supported by the Report Server are available.) The ReportViewer control cannot be extended by adding custom renderers or custom report items.

Besides additional export formats, the Report Server offers better scalability, central storage, management and access control of reports, caching, subscriptions, etc.

share|improve this answer

PDFsharp is the Open Source library that easily creates PDF documents from any .NET language. The same drawing routines can be used to create PDF documents, draw on the screen, or send output to any printer.

http://pdfsharp.com/PDFsharp/

share|improve this answer
Duplicate? stackoverflow.com/a/8817/96 – Chris Marasti-Georg Jan 31 '12 at 21:28
oops I missed his comment... – Hemant Pawar Feb 1 '12 at 6:07
Well, PDFSharp cannot rasterize a PDF: so it cannot print one. – wasabi Apr 18 '12 at 17:44
@wasabi according to their homepage - "The same drawing routines can be used to create PDF documents, draw on the screen, or send output to any printer." – Hemant Pawar Apr 28 '12 at 19:59
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.